/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | namedtuple_with_abc.py | 39 from abc import ABCMeta, abstractproperty 69 _namedtuple.abc = _NamedTupleABC 90 class MyRecord(namedtuple.abc): 104 class MyAbstractRecord(namedtuple.abc): 216 assert issubclass(MyRecord, namedtuple.abc) 217 assert issubclass(MyAbstractRecord, namedtuple.abc) 218 assert issubclass(AnotherAbstractRecord, namedtuple.abc) 219 assert issubclass(MyRecord2, namedtuple.abc) 220 assert issubclass(MyRecord3, namedtuple.abc) 221 assert issubclass(MyRecord33, namedtuple.abc) [all …]
|
/openbmc/pldm/libpldmresponder/test/ |
H A D | libpldmresponder_bios_string_attribute_test.cpp | 58 "default_string" : "abc", in TEST_F() 63 "object_path" : "/xyz/abc/def", in TEST_F() 85 "default_string" : "abc", in TEST_F() 121 "default_string" : "abc", in TEST_F() 126 "object_path" : "/xyz/abc/def", in TEST_F() 171 "default_string" : "abc", in TEST_F() 176 "object_path" : "/xyz/abc/def", in TEST_F()
|
H A D | libpldmresponder_bios_enum_attribute_test.cpp | 76 "object_path" : "/xyz/abc/def", in TEST_F() 144 "object_path" : "/xyz/abc/def", in TEST_F() 145 "interface" : "xyz.openbmc.abc.def", in TEST_F() 197 "object_path" : "/xyz/abc/def", in TEST_F() 198 "interface" : "xyz.openbmc.abc.def", in TEST_F()
|
H A D | libpldmresponder_bios_attribute_test.cpp | 72 "object_path" : "/xyz/abc/def", in TEST() 93 "object_path" : "/xyz/abc/def", in TEST()
|
/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 27 +import collections.abc 36 + assert(func is None or isinstance(func, collections.abc.Callable)) 44 + isinstance(authfail_callback, collections.abc.Callable)) 57 +import collections.abc 66 + assert(isinstance(hook, collections.abc.Callable)) 75 + assert isinstance(hook, collections.abc.Callable)
|
/openbmc/qemu/python/qemu/qmp/ |
H A D | models.py | 10 from collections import abc 68 self._check_member('QMP', abc.Mapping, "JSON object") 98 self._check_member('version', abc.Mapping, "JSON object") 101 self._check_member('capabilities', abc.Sequence, "JSON array") 120 self._check_member('error', abc.Mapping, "JSON object")
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | compress_doc.bbclass | 17 # DOC_COMPRESS_LIST:append = ' abc' 18 # DOC_COMPRESS = 'abc' 19 # DOC_COMPRESS_CMD[abc] = 'abc compress cmd ***' 20 # DOC_DECOMPRESS_CMD[abc] = 'abc decompress cmd ***'
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-uevent | 41 add fe4d7c9d-b8c6-4a70-9ef1-3d8a58d18eed A=1 B=abc 47 SYNTH_ARG_B=abc
|
/openbmc/openbmc/poky/meta/lib/oeqa/core/target/ |
H A D | __init__.py | 7 from abc import abstractmethod
|
/openbmc/openbmc-tools/dbus-vis/ |
H A D | ipmi_capture.js | 315 const abc = ExtractMyDelimitedStuff(data.toString()); 316 if (abc == null) break; 317 const sp = abc.split(',');
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
H A D | python3-frozenlist_1.5.0.bb | 1 SUMMARY = "A list-like structure which implements collections.abc.MutableSequence, and which can be…
|
/openbmc/openbmc/poky/meta/lib/oeqa/core/decorator/ |
H A D | __init__.py | 8 from abc import ABCMeta
|
/openbmc/docs/designs/management-console/ |
H A D | service-discovery.md | 72 ["Type=abc"] = eth0 IPv4 obmc_rest \_obmc_rest.\_tcp local hostname = 74 port = [443] txt = ["Manufacturer=XYZ"] txt = ["Type=abc"]
|
/openbmc/openbmc/poky/bitbake/lib/bb/asyncrpc/ |
H A D | client.py | 7 import abc 229 @abc.abstractmethod
|
H A D | serv.py | 7 import abc 310 @abc.abstractmethod
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | buildproject.py | 15 from abc import ABCMeta, abstractmethod
|
H A D | metadata.py | 9 from collections.abc import MutableMapping
|
H A D | targetbuild.py | 14 from abc import ABCMeta, abstractmethod
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | maketype.py | 15 from collections.abc import Callable
|
H A D | manifest.py | 7 from abc import ABCMeta, abstractmethod
|
H A D | sdk.py | 7 from abc import ABCMeta, abstractmethod
|
/openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
H A D | uievent.py | 47 if isinstance(ret, collections.abc.Iterable):
|
/openbmc/linux/tools/testing/kunit/ |
H A D | kunit_kernel.py | 9 import importlib.abc 215 assert isinstance(spec.loader, importlib.abc.Loader)
|
/openbmc/openbmc/poky/meta/conf/machine/include/microblaze/ |
H A D | feature-microblaze-versions.inc | 6 # (where Z = [abc]). For v8.* versions of MicroBlaze the revision (Z) changes
|
/openbmc/openbmc/poky/meta/lib/oeqa/controllers/ |
H A D | controllerimage.py | 25 from abc import ABCMeta, abstractmethod
|