Searched defs:types (Results 1 - 9 of 9) sorted by relevance
/pkg/src/modules/ |
H A D | pkgsubprocess.py | 28 import types namespace
|
H A D | facet.py | 32 import types namespace 533 Facets.allow_action = types.MethodType(_allow_facet, None, Facets)
|
H A D | variant.py | 32 import types namespace 56 _Variants.allow_action = types.MethodType(_allow_variant, None, _Variants) 91 # the actions. Specifically, it records what types of variants exist 93 # (x86/sparc or debug/non-debug). The variant types are the keys of the 109 """Class for holding a template of variant types and their potential 167 # differences. The type_diffs field stores the variant types which are in the 169 # the values for particular types which are in the caller and not in the 431 difficult in the face of arbitrary numbers of variant types and 452 # variant types is necessary. 'keep_going' tracks whether that 528 # another pass over the variant types a [all...] |
H A D | catalog.py | 40 import types namespace 2045 indicating the types of catalog data that will be returned 2418 constants indicating the types of catalog data that will 2472 constants indicating the types of catalog data that will 2568 indicating the types of catalog data that will be returned 2701 constants indicating the types of catalog data that will 2786 indicating the types of catalog data that will be returned 3722 constants indicating the types of catalog data that will
|
/pkg/src/modules/actions/ |
H A D | __init__.py | 30 This package contains modules describing packaging actions, or file types. The 36 "types", a dictionary which maps the action names to the classes that 57 # A dictionary of all the types in this package, mapping to the classes that 59 types = {} variable 81 types[cls.name] = cls 261 if atype not in types: 316 action = types[atype](data, **attrs)
|
H A D | file.py | 38 import types namespace 889 FileAction.__init__ = types.MethodType(_common._file_init, None, FileAction)
|
H A D | generic.py | 42 import types namespace 180 # Most types of actions do not have a payload. 448 # Comparing different action types. 1178 """Common validation logic for all action types. 1271 Action.__init__ = types.MethodType(_common._generic_init, None, Action)
|
/pkg/src/tests/api/ |
H A D | t_manifest.py | 31 import types namespace
|
/pkg/src/tests/ |
H A D | run.py | 194 import types namespace 240 if six.PY2 and isinstance(obj, types.MethodType): 244 elif six.PY3 and isinstance(obj, types.FunctionType):
|
Completed in 36 milliseconds