Searched refs:close_matches (Results 1 – 5 of 5) sorted by relevance
/openbmc/openbmc/poky/scripts/contrib/ |
H A D | graph-tool | 32 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)))
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | taskdata.py | 348 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 D | event.py | 528 def __init__(self, item, runtime=False, dependees=None, reasons=None, close_matches=None): argument 534 self._close_matches = close_matches
|
H A D | runqueue.py | 995 close_matches = difflib.get_close_matches(task, tasks, cutoff=0.7) 996 if close_matches: 997 extra = ". Close matches:\n %s" % "\n ".join(close_matches)
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | event.py | 654 close_matches = ["foibar", "footbar"] 656 close_matches) 664 close_matches = ["foibar", "footbar"] 666 close_matches)
|