Searched refs:Job (Results 1 - 25 of 66) sorted by relevance

123

/external/toolchain-utils/automation/clients/helper/
H A Djobs.py8 to_return = job.Job(label, command, timeout)
/external/autotest/frontend/
H A Ddjango_lite_unittest.py24 self.assertEqual(1, models.Job.objects.all().count())
/external/toolchain-utils/automation/clients/
H A Dpwd_test.py19 pwd_job = job.Job('pwd_job', ' && '.join(command))
H A Doutput_test.py21 pwd_job = job.Job('pwd_job', command)
/external/mksh/src/
H A Djobs.c75 /* Job.flags values */
89 typedef struct job Job; typedef in typeref:struct:job
91 Job *next; /* next job in list */
128 static Job *job_list; /* job list */
129 static Job *last_job;
130 static Job *async_job;
152 static void j_set_async(Job *);
153 static void j_startjob(Job *);
154 static int j_waitj(Job *, int, const char *);
156 static void j_print(Job *, in
[all...]
/external/autotest/site_utils/
H A Dcount_jobs.py30 return models.Job.objects.filter(created_on__gt=cutoff).count()
H A Dcount_jobs_unittest.py54 models.Job(created_on=some_day - timedelta(hours=i)).save()
/external/autotest/scheduler/shard/
H A Dshard_client.py72 - Find objects that the Host/Job objects depend on: Labels, AclGroups, Users,
168 self._deserialize_many(jobs_serialized, models.Job, 'job')
190 job_models = models.Job.objects.filter(
236 # models.Job.shard. We need to be careful to wait for both the
239 job_ids = list(models.Job.objects.filter(
243 for job_to_upload in models.Job.objects.filter(pk__in=job_ids).all():
252 models.Job.objects.filter(pk__in=job_ids).update(shard=self.shard)
278 job_ids = list(models.Job.objects.filter(
H A Dsimple_heartbeat_client.py91 [models.Job.deserialize(j) for j in response['jobs']]
/external/autotest/frontend/afe/
H A Dmodels_test.py282 self.assertEqual(1, models.Job.objects.all().count())
285 self.assertEqual(0, models.Job.objects.all().count())
292 self.assertEqual(2, models.Job.objects.all().count())
294 models.Job.objects.all().delete()
295 self.assertEqual(0, models.Job.objects.all().count())
573 jobs = [models.Job.deserialize(job) for job in jobs_serialized]
612 models.Job.deserialize(serialized)
614 job = models.Job.objects.get(pk=job.id)
H A Dfrontend_test_utils.py116 @returns A Django frontend.afe.models.Job instance.
128 parent_job = (models.Job.objects.get(id=parent_job_id)
130 job = models.Job.objects.create(
H A Dmodels.py317 """Gets the default drone set name, compatible with Job.add_object.
1284 * In `class Job` we're required to keep a reference to this class
1286 * The existence of the reference in `Job` means that certain
1294 """For compatibility with Job.add_object.
1346 class Job(dbmodels.Model, model_logic.ModelExtensions): class in inherits:dbmodels.Model, model_logic.ModelExtensions
1449 super(Job, self)._deserialize_relation(link, data)
1469 'Job id=%s is assigned to shard (%s). Cannot update it with %s '
1663 query = Job.objects.raw(cls.SQL_SHARD_JOBS % {
1672 query = Job.objects.raw(cls.SQL_SHARD_JOBS_WITH_HOSTS % {
1681 query = Job
[all...]
/external/ltp/testcases/commands/cron/
H A Dcron_pos_tests.sh90 echo Job has not been executed
98 echo Job has not produced valid output
/external/clang/include/clang/Driver/
H A DTool.h27 class Job;
/external/autotest/venv/lucifer/cmd/
H A Djob_aborter.py155 models.Job.objects
169 models.Job.objects
H A Djob_reporter.py62 # Job specific
64 help='Autotest Job ID')
116 job = models.Job.objects.get(id=args.job_id)
135 job = models.Job.objects.get(id=args.job_id)
/external/autotest/frontend/tko/
H A Dmodels_test.py22 self.job1 = models.Job.objects.create(
/external/autotest/contrib/
H A Dcompare_suite.py121 self.tko_job = tko_models.Job.objects.filter(afe_job_id=self.id)[0]
124 # Job start time
126 # Job end time
330 models.Job.objects.filter(id__in=job_ids)]
339 suite_job = models.Job.objects.filter(id=job_id)[0]
341 test_jobs = models.Job.objects.filter(parent_job_id=job_id)
H A Dalways_failing_tests.py86 afe_jobs = afe_models.Job.objects.select_related('parent_job')\
/external/autotest/scheduler/
H A Drdb_testing_utils.py180 job_filter = models.Job.objects.filter(id=job_id, shard__isnull=True)
278 job = models.Job.objects.get(id=job_id)
412 return models.Job.objects.filter(id=job.id)[0]
483 job = models.Job.objects.get(id=job_id)
/external/autotest/tko/
H A Djob_serializer.py79 job_pb = tko_pb2.Job()
113 pb_job = tko_pb2.Job()
H A Dsite_parse_unittest.py148 afe_job = django_afe_models.Job.objects.create(created_on='2014-08-12')
149 # Machine has less dependencies than tko Job so it's easier to create
152 django_afe_models.Job.objects.get(pk=afe_job.id)
/external/clang/lib/Driver/
H A DCompilation.cpp173 for (const auto &Job : Jobs) {
175 if (int Res = ExecuteCommand(Job, FailingCommand)) {
/external/clang/test/SemaCXX/
H A Dlambda-expressions.cpp367 void Job(L l);
373 Job([len]() {});
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrProcessorST.java798 m_jobs = new Job [JOB_QUEUE_SIZE];
871 private static abstract class Job class in class:InstrProcessorST
878 private static final class FileWriteJob extends Job
901 private static final class EntryWriteJob extends Job
926 private void addJob (final Job job)
939 final Job job = m_jobs [j];
1020 private final Job [] m_jobs;

Completed in 512 milliseconds

123