Home
last modified time | relevance | path

Searched refs:collections (Results 1 – 25 of 214) sorted by relevance

123456789

/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-slip-dbus/
H A D9b939c0b534c1b7958fa0a3c7aedf30bca910431.patch4 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__.py52 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 D0001-Fix-const-qualifier-error.patch17 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 Dnlspec.py3 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 Dutils_get_version.py3 import collections
18 import_versions = collections.OrderedDict()
65 versions = collections.OrderedDict()
/openbmc/openbmc-test-automation/lib/
H A Dvar_funcs.py15 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 Dvar_stack.py7 import collections
78 self.__stack_dict = collections.OrderedDict()
H A Dfunc_args.py7 import collections
168 return collections.OrderedDict((k, v) for (k, v) in args.items())
H A Dipmi_client.py7 import collections
67 new_options = collections.OrderedDict()
H A Dtally_sheet.py7 import collections
89 self.__table = collections.OrderedDict()
152 self.__table[row_key] = collections.OrderedDict(init_fields_dict)
H A Dgen_plug_in_utils.py7 import collections
82 return collections.OrderedDict()
115 parm_defs = collections.OrderedDict()
148 plug_var_dict = collections.OrderedDict(
/openbmc/u-boot/tools/binman/
H A Dfmap_util.py9 import collections
48 FmapHeader = collections.namedtuple('FmapHeader', FMAP_HEADER_NAMES)
49 FmapArea = collections.namedtuple('FmapArea', FMAP_AREA_NAMES)
H A Dentry_test.py7 import collections
59 Node = collections.namedtuple('Node', ['name', 'path'])
69 Node = collections.namedtuple('Node', ['name', 'parent'])
/openbmc/openbmc/poky/scripts/
H A Dyocto-check-layer17 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 Dpython3-cachetools_5.5.1.bb1 SUMMARY = "Extensible memoizing collections and decorators"
4 collections and decorators, including variants of the \
/openbmc/openbmc/poky/meta/lib/oe/
H A Dsbom.py7 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 Dtest_health_metric_collection.cpp77 collections; in createCollection() local
81 collections[type] = in createCollection()
84 collections[type]->read(); in createCollection()
/openbmc/phosphor-health-monitor/
H A Dhealth_monitor.cpp31 collections[type] = in startup()
44 for (auto& [type, collection] : collections) in run()
/openbmc/openbmc/meta-arm/meta-arm/lib/fvp/
H A Dterminal.py2 import collections
17 Terminal = collections.namedtuple("Terminal", ["priority", "name", "command"])
/openbmc/qemu/scripts/
H A Danalyze-migration.py23 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 Dmem-phys-addr.py14 import collections
26 load_mem_type_cnt = collections.Counter()
/openbmc/openbmc/poky/meta/classes/
H A Dbuildstats-summary.bbclass9 import collections
17 built = collections.defaultdict(lambda: [set(), set()])
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3/
H A Dcreate_manifest3.py46 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 Dnamedtuple_with_abc.py38 import collections
44 _namedtuple = collections.namedtuple
79 collections.namedtuple = namedtuple
/openbmc/openbmc/poky/bitbake/lib/bblayers/
H A Daction.py156 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)

123456789