Home
last modified time | relevance | path

Searched refs:close_matches (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/yocto/poky/scripts/contrib/
H A Dgraph-tool32 close_matches = difflib.get_close_matches(node, graph.nodes(), cutoff=0.7)
33 if close_matches:
34 … print('ERROR: no node "%s" in graph. Close matches:\n %s' % (node, '\n '.join(close_matches)))
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dtaskdata.py348 close_matches = self.get_close_matches(item, list(dataCache.providers.keys()))
353 if new not in close_matches:
354 close_matches.append(new)
355 …dees=self.get_dependees(item), reasons=self.get_reasons(item), close_matches=close_matches), cfgDa…
H A Devent.py523 def __init__(self, item, runtime=False, dependees=None, reasons=None, close_matches=None): argument
529 self._close_matches = close_matches
H A Drunqueue.py964 close_matches = difflib.get_close_matches(task, tasks, cutoff=0.7)
965 if close_matches:
966 extra = ". Close matches:\n %s" % "\n ".join(close_matches)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Devent.py665 close_matches = ["foibar", "footbar"]
667 close_matches)
675 close_matches = ["foibar", "footbar"]
677 close_matches)