/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-slip-dbus/ |
H A D | 9b939c0b534c1b7958fa0a3c7aedf30bca910431.patch | 4 Subject: [PATCH] Python 3.10+ fix: Use collections.abc.Callable instead of 5 collections.Callable 8 the collections module in Python 3.10. 26 -import collections 27 +import collections.abc 35 - assert(func is None or isinstance(func, collections.Callable)) 36 + assert(func is None or isinstance(func, collections.abc.Callable)) 43 - isinstance(authfail_callback, collections.Callable)) 44 + isinstance(authfail_callback, collections.abc.Callable)) 56 -import collections [all …]
|
/openbmc/openbmc/poky/scripts/lib/checklayer/ |
H A D | __init__.py | 52 collections = (ldata.getVar('BBFILE_COLLECTIONS') or '').split() 53 if not collections: 55 collections = [name] 57 collections = {c: {} for c in collections} 58 for name in collections: 68 collections[name]['priority'] = priority 69 collections[name]['pattern'] = pattern 70 collections[name]['depends'] = ' '.join(depDict.keys()) 71 collections[name]['compat'] = compat 73 return collections [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/freerdp/freerdp/ |
H A D | 0001-Fix-const-qualifier-error.patch | 17 winpr/include/winpr/collections.h | 2 +- 42 diff --git a/winpr/include/winpr/collections.h b/winpr/include/winpr/collections.h 44 --- a/winpr/include/winpr/collections.h 45 +++ b/winpr/include/winpr/collections.h
|
/openbmc/linux/tools/net/ynl/lib/ |
H A D | nlspec.py | 3 import collections 192 self.attrs = collections.OrderedDict() 193 self.attrs_by_val = collections.OrderedDict() 401 self.attr_sets = collections.OrderedDict() 402 self.msgs = collections.OrderedDict() 403 self.req_by_value = collections.OrderedDict() 404 self.rsp_by_value = collections.OrderedDict() 405 self.ops = collections.OrderedDict() 406 self.ntfs = collections.OrderedDict() 407 self.consts = collections.OrderedDict() [all …]
|
/openbmc/openbmc-test-automation/gui/lib/ |
H A D | utils_get_version.py | 3 import collections 18 import_versions = collections.OrderedDict() 65 versions = collections.OrderedDict()
|
/openbmc/openbmc-test-automation/lib/ |
H A D | var_funcs.py | 15 import collections 47 result_dict = collections.OrderedDict() 129 result_dict = collections.OrderedDict() 186 result_dict = collections.OrderedDict() 338 result_dict = collections.OrderedDict() 674 line_dict = collections.OrderedDict(zip(columns, line)) 909 result = collections.OrderedDict()
|
H A D | var_stack.py | 7 import collections 78 self.__stack_dict = collections.OrderedDict()
|
H A D | func_args.py | 7 import collections 168 return collections.OrderedDict((k, v) for (k, v) in args.items())
|
H A D | ipmi_client.py | 7 import collections 67 new_options = collections.OrderedDict()
|
H A D | tally_sheet.py | 7 import collections 89 self.__table = collections.OrderedDict() 152 self.__table[row_key] = collections.OrderedDict(init_fields_dict)
|
H A D | gen_plug_in_utils.py | 7 import collections 82 return collections.OrderedDict() 115 parm_defs = collections.OrderedDict() 148 plug_var_dict = collections.OrderedDict(
|
/openbmc/u-boot/tools/binman/ |
H A D | fmap_util.py | 9 import collections 48 FmapHeader = collections.namedtuple('FmapHeader', FMAP_HEADER_NAMES) 49 FmapArea = collections.namedtuple('FmapArea', FMAP_AREA_NAMES)
|
H A D | entry_test.py | 7 import collections 59 Node = collections.namedtuple('Node', ['name', 'path']) 69 Node = collections.namedtuple('Node', ['name', 'parent'])
|
/openbmc/openbmc/poky/scripts/ |
H A D | yocto-check-layer | 17 import collections 46 collections = layer.get("collections", {}) 47 if collections: 48 logger.debug("%s collections: %s" % (layer["name"], ", ".join(collections))) 166 results = collections.OrderedDict() 167 results_status = collections.OrderedDict()
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
H A D | python3-cachetools_5.5.1.bb | 1 SUMMARY = "Extensible memoizing collections and decorators" 4 collections and decorators, including variants of the \
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | sbom.py | 7 import collections 9 DepRecipe = collections.namedtuple("DepRecipe", ("doc", "doc_sha1", "recipe")) 10 DepSource = collections.namedtuple("DepSource", ("doc", "doc_sha1", "recipe", "file"))
|
/openbmc/phosphor-health-monitor/test/ |
H A D | test_health_metric_collection.cpp | 77 collections; in createCollection() local 81 collections[type] = in createCollection() 84 collections[type]->read(); in createCollection()
|
/openbmc/phosphor-health-monitor/ |
H A D | health_monitor.cpp | 31 collections[type] = in startup() 44 for (auto& [type, collection] : collections) in run()
|
/openbmc/openbmc/meta-arm/meta-arm/lib/fvp/ |
H A D | terminal.py | 2 import collections 17 Terminal = collections.namedtuple("Terminal", ["priority", "name", "command"])
|
/openbmc/qemu/scripts/ |
H A D | analyze-migration.py | 23 import collections 130 self.sizeinfo = collections.OrderedDict() 131 self.data = collections.OrderedDict() 137 self.memory = collections.OrderedDict() 468 self.data = collections.OrderedDict() 562 r = collections.OrderedDict() 654 self.sections = collections.OrderedDict() 698 object_pairs_hook=collections.OrderedDict) 707 r = collections.OrderedDict()
|
/openbmc/linux/tools/perf/scripts/python/ |
H A D | mem-phys-addr.py | 14 import collections 26 load_mem_type_cnt = collections.Counter()
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | buildstats-summary.bbclass | 9 import collections 17 built = collections.defaultdict(lambda: [set(), set()])
|
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3/ |
H A D | create_manifest3.py | 46 import collections 63 new_manifest = collections.OrderedDict() 106 old_manifest = json.loads(manifest_str, object_pairs_hook=collections.OrderedDict) 222 new_manifest[pypkg] = collections.OrderedDict()
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | namedtuple_with_abc.py | 38 import collections 44 _namedtuple = collections.namedtuple 79 collections.namedtuple = namedtuple
|
/openbmc/openbmc/poky/bitbake/lib/bblayers/ |
H A D | action.py | 156 for f in self.tinfoil.cooker.collections[mc].overlayed.keys(): 157 for of in self.tinfoil.cooker.collections[mc].overlayed[f]: 188 … appends |= set(self.tinfoil.cooker.collections[mc].get_file_appends(f1full)) 198 bbappends |= set(self.tinfoil.cooker.collections[mc].bbappends)
|