/openbmc/openbmc/poky/bitbake/lib/toaster/orm/migrations/ |
H A D | 0007_auto_20160523_1446.py | 17 …field=models.IntegerField(default=2, choices=[(0, 'Succeeded'), (1, 'Failed'), (2, 'In Progress'),… 22 field=models.IntegerField(choices=[(0, 'variable')]), 37 field=models.IntegerField(choices=[(0, 'local'), (1, 'layerindex'), (2, 'imported')]), 42 …field=models.IntegerField(default=0, choices=[(0, 'info'), (1, 'warn'), (2, 'error'), (3, 'critica… 52 …field=models.IntegerField(choices=[(0, 'depends'), (1, 'depends'), (3, 'recommends'), (2, 'recomme… 57 field=models.IntegerField(choices=[(0, 'depends'), (1, 'rdepends')]), 72 …field=models.IntegerField(choices=[(1, 'regular'), (2, 'directory'), (3, 'symlink'), (4, 'socket')… 77 …field=models.IntegerField(default=-1, choices=[(-1, 'Not Available'), (0, 'Succeeded'), (1, 'Cover… 82 field=models.IntegerField(default=0, choices=[(0, 'N/A'), (2, 'Python'), (3, 'Shell')]), 87 …field=models.IntegerField(default=0, choices=[(0, 'Not Applicable'), (1, 'File not in cache'), (2,…
|
H A D | 0001_initial.py | 27 ('up_id', models.IntegerField(default=None, null=True)), 45 …('outcome', models.IntegerField(default=2, choices=[(0, b'Succeeded'), (1, b'Failed'), (2, b'In Pr… 56 ('file_size', models.IntegerField()), 64 ('area', models.IntegerField(choices=[(0, b'variable')])), 74 ('up_id', models.IntegerField(default=None, null=True)), 90 ('up_id', models.IntegerField(default=None, null=True)), 95 ('priority', models.IntegerField(default=0)), 106 …('sourcetype', models.IntegerField(choices=[(0, b'local'), (1, b'layerindex'), (2, b'imported')])), 114 ('up_id', models.IntegerField(default=None, null=True)), 124 …('level', models.IntegerField(default=0, choices=[(0, b'info'), (1, b'warn'), (2, b'error'), (3, b… [all …]
|
H A D | 0013_recipe_parse_progress_fields.py | 17 field=models.IntegerField(default=0), 22 field=models.IntegerField(default=1),
|
H A D | 0016_clone_progress.py | 16 field=models.IntegerField(default=1), 21 field=models.IntegerField(default=1), # (default off)
|
H A D | 0008_refactor_artifact_models.py | 19 ('file_size', models.IntegerField()), 28 ('file_size', models.IntegerField()),
|
H A D | 0005_task_field_separation.py | 31 field=models.IntegerField(null=True), 36 field=models.IntegerField(null=True),
|
H A D | 0006_add_cancelled_state.py | 17 …field=models.IntegerField(default=2, choices=[(0, b'Succeeded'), (1, b'Failed'), (2, b'In Progress…
|
H A D | 0019_django_2_2.py | 21 field=models.IntegerField(default=1),
|
H A D | 0021_eventlogsimports.py | 19 ('build_id', models.IntegerField(blank=True, null=True)),
|
H A D | 0017_distro_clone.py | 17 ('up_id', models.IntegerField(default=None, null=True)),
|
H A D | 0010_delete_layer_source_references.py | 52 …field=models.IntegerField(default=0, choices=[(0, 'local'), (1, 'layerindex'), (2, 'imported'), (3…
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/migrations/ |
H A D | 0004_auto_20160523_1446.py | 17 field=models.IntegerField(default=0, choices=[(0, 'stopped'), (1, 'started')]), 22 field=models.IntegerField(choices=[(0, 'local')]), 27 … field=models.IntegerField(default=0, choices=[(0, 'free'), (1, 'lock'), (2, 'running')]), 32 …field=models.IntegerField(default=0, choices=[(0, 'created'), (1, 'queued'), (2, 'in progress'), (…
|
H A D | 0001_initial.py | 64 ('betype', models.IntegerField(choices=[(0, b'local'), (1, b'ssh')])), 66 ('bbport', models.IntegerField(default=-1)), 68 … ('bbstate', models.IntegerField(default=0, choices=[(0, b'stopped'), (1, b'started')])), 71 … ('lock', models.IntegerField(default=0, choices=[(0, b'free'), (1, b'lock'), (2, b'running')])), 80 …('state', models.IntegerField(default=0, choices=[(0, b'created'), (1, b'queued'), (2, b'in progre…
|
H A D | 0005_reorder_buildrequest_states.py | 17 …field=models.IntegerField(choices=[(0, 'created'), (1, 'queued'), (2, 'in progress'), (3, 'failed'…
|
H A D | 0002_auto_20160120_1250.py | 17 field=models.IntegerField(choices=[(0, b'local')]),
|
H A D | 0003_add_cancelling_state.py | 17 …field=models.IntegerField(default=0, choices=[(0, b'created'), (1, b'queued'), (2, b'in progress')…
|
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/ |
H A D | models.py | 189 user_id = models.IntegerField(null=True) 477 outcome = models.IntegerField(choices=BUILD_OUTCOME, default=IN_PROGRESS) 483 recipes_to_parse = models.IntegerField(default=1) 486 recipes_parsed = models.IntegerField(default=1) 489 repos_to_clone = models.IntegerField(default=1) 492 repos_cloned = models.IntegerField(default=1) 789 image_size = models.IntegerField(default=0) 948 file_size = models.IntegerField() 958 file_size = models.IntegerField() 977 file_size = models.IntegerField() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/ |
H A D | models.py | 36 betype = models.IntegerField(choices = TYPE) 38 bbport = models.IntegerField(default = -1) 40 bbstate = models.IntegerField(choices = SERVER_STATE, default = SERVER_STOPPED) 43 lock = models.IntegerField(choices = LOCK_STATE, default = LOCK_FREE) 91 state = models.IntegerField(choices = REQUEST_STATE, default = REQ_CREATED)
|
/openbmc/pldm/libpldmresponder/ |
H A D | bios_table.hpp | 237 struct IntegerField struct 258 IntegerField decodeIntegerEntry(const pldm_bios_attr_table_entry* entry);
|
H A D | bios_integer_attribute.hpp | 68 table::attribute::IntegerField integerInfo;
|
H A D | bios_table.cpp | 212 IntegerField decodeIntegerEntry(const pldm_bios_attr_table_entry* entry) in decodeIntegerEntry()
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ |
H A D | tables.py | 13 from django.db.models import Q, Sum, Count, When, Case, Value, IntegerField 1119 output_field=IntegerField() 1129 output_field=IntegerField()
|
/openbmc/openbmc/poky/documentation/toaster-manual/ |
H A D | reference.rst | 341 <field type="IntegerField" name="layer_source">0</field> 347 <field type="IntegerField" name="layer_source">0</field> 355 <field type="IntegerField" name="layer_source">0</field>
|