Searched defs:fields (Results 1 - 3 of 3) sorted by relevance

/ec/ECAutoAssessmentBox/Products/ECAutoAssessmentBox/content/
H A DECAutoAssessmentBox.py115 fields = '_getBackendInputFields', variable
118 label = "Input fields",
119 description = 'Input fields for a backend',
185 values for backend's input fields.
188 Move this method to ECSpoolerTool and cache the fields so we
198 fields = ecaab_utils.getBackendInputFields(backend)
200 for field in fields:
202 type = fields[field].get('format', 'text')
203 label = fields[field].get('label', '')
204 description = fields[fiel
[all...]
/ec/ECSpooler/lib/util/
H A DBackendSchema.py83 purpose of comparing fields. Right now it's pretty crude"""
174 Manage a list of fields by grouping them together.
180 def __init__(self, name='default', fields=None):
181 """Initialize Schemata and add optional fields"""
187 if fields is not None:
188 if type(fields) not in [ListType, TupleType]:
189 fields = (fields, )
191 for field in fields:
202 Returns a new Schemata object that contains all fields an
226 def fields(self): member in class:Schemata
[all...]
H A Duuid.py63 six integer fields (with 32-bit, 16-bit, 16-bit, 8-bit, 8-bit, and
64 48-bit values respectively) as an argument named 'fields', or a single
71 fields a tuple of the six integer fields of the UUID,
98 def __init__(self, hex=None, bytes=None, fields=None, int=None,
104 the 'fields' argument, or a single 128-bit integer as the 'int'
113 UUID(fields=(0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678))
116 Exactly one of 'hex', 'bytes', 'fields', or 'int' must be given.
119 overriding bits in the given 'hex', 'bytes', 'fields', or 'int'.
122 if [hex, bytes, fields, in
202 fields = property(get_fields) variable in class:UUID
[all...]

Completed in 280 milliseconds