HomeSort by relevance Sort by last modified time
    Searched full:execution_subdir (Results 1 - 21 of 21) sorted by null

  /external/autotest/frontend/migrations/
022_implement_sync_count.py 9 ALTER TABLE host_queue_entries DROP COLUMN `execution_subdir`;
13 # add execution_subdir field
15 `execution_subdir` varchar(255) NOT NULL""")
17 # fill in execution_subdir field for running/complete entries
31 execution_subdir = ''
33 execution_subdir = hostname
35 'UPDATE host_queue_entries SET execution_subdir = %s WHERE id = %s',
36 execution_subdir, id)
  /external/autotest/frontend/client/src/autotest/afe/
AbortSynchronousDialog.java 68 return AfeUtils.getJobTag(job) + "/" + Utils.jsonToString(queueEntry.get("execution_subdir"));
86 groupArgs.put("execution_subdir", entry.get("execution_subdir"));
AfeUtils.java 126 entry.containsKey("execution_subdir") &&
127 !Utils.jsonToString(entry.get("execution_subdir")).equals("");
JobDetailView.java 574 String executionSubdir = Utils.jsonToString(hostQueueEntry.get("execution_subdir"));
  /external/autotest/scheduler/
scheduler_models.py 467 'active', 'complete', 'deleted', 'execution_subdir',
560 self.update_field('execution_subdir', subdir)
667 if not self.execution_subdir:
883 'complete!=1 AND execution_subdir="" AND '
888 assert self.execution_subdir
    [all...]
scheduler_models_unittest.py 176 self.assertEqual(hqe.execution_subdir, '.')
456 self._update_hqe("status='Starting', execution_subdir=''")
505 hqe.execution_subdir = 'my_rack.group0'
monitor_db_unittest.py 425 # Ensure execution_subdir is set before status
428 self.assertEqual(hqe.execution_subdir, 'hostless')
438 self.assertEqual('hostless', hqe.execution_subdir)
    [all...]
monitor_db.py 757 # Need to set execution_subdir before setting the status:
760 # execution_subdir is needed. Therefore it must be set before entering
763 # and the execution_subdir, upon it's restart restoring agents would
772 queue_entry.update_field('execution_subdir', 'hostless')
    [all...]
monitor_db_functional_test.py 755 queue_entry.execution_subdir = '1-myuser/host1'
851 queue_entry.execution_subdir = 'host1'
    [all...]
  /external/autotest/frontend/afe/
models_test.py 141 entry.execution_subdir = 'subdir'
464 'execution_subdir': '',
532 'execution_subdir': '',
rpc_utils.py 352 return (host_queue_entry.job.id, host_queue_entry.execution_subdir)
364 if not queue_entry.execution_subdir:
371 % (queue_entry.job.id, queue_entry.execution_subdir,
740 queue_entry['execution_subdir'])
    [all...]
rpc_interface_unittest.py 265 execution_subdir='host1')
268 execution_subdir='host1')
resources.py 784 'execution_path': self.instance.execution_subdir,
    [all...]
site_rpc_interface_unittest.py 495 'execution_subdir': '',
    [all...]
models.py 1776 execution_subdir = dbmodels.CharField(max_length=255, blank=True, variable in class:HostQueueEntry
    [all...]
  /external/autotest/scheduler/shard/
shard_client_unittest.py 112 'execution_subdir': u'',
  /external/autotest/server/
site_utils.py 585 def get_hqe_exec_path(tag, execution_subdir):
589 @param execution_subdir Execution sub-directory string of a HQE.
592 return os.path.join(tag, execution_subdir)
frontend.py     [all...]
  /external/autotest/site_utils/
job_history.py 396 if hqe and hqe.execution_subdir != 'hostless':
  /external/autotest/frontend/afe/doctests/
001_rpc_test.txt 591 ... 'execution_subdir': '',
607 ... 'execution_subdir': '',
    [all...]
  /external/autotest/database/
schema_051.sql 182 `execution_subdir` varchar(255) NOT NULL,
    [all...]

Completed in 312 milliseconds