Searched defs:Job (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/api/map_job/
H A D__init__.py12 from .map_job_control import Job namespace
H A Dmap_job_control.py15 class Job(object): class in inherits:object
52 A Job instance for job_id.
127 a Job instance representing the submitted job.
178 raise ValueError("Job state for job %s is missing." % job_id)
/external/chromium-trace/catapult/tracing/tracing/mre/
H A Djob.py9 class Job(object): class in inherits:object
34 return Job(
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
H A Djob.py31 class Job(object): class in inherits:object
60 return 'Job(%s)' % self.arn
H A Dvault.py26 from boto.glacier.job import Job namespace
288 :rtype: :class:`boto.glacier.job.Job`
289 :return: A Job object representing the retrieval job.
358 Identical to ``retrieve_inventory``, but returns a ``Job`` instance
381 :rtype: :class:`boto.glacier.job.Job`
382 :return: A Job object representing the retrieval job.
403 :rtype: :class:`boto.glacier.job.Job`
404 :return: A Job object representing the job.
407 return Job(self, response_data)
411 Return a list of Job object
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/glacier/
H A Dtest_job.py25 from boto.glacier.job import Job namespace
36 self.job = Job(self.vault)
H A Dtest_vault.py29 from boto.glacier.job import Job namespace
124 "JobDescription": "My ArchiveRetrieval Job",
146 # The variant the returns a full ``Job`` object.
148 self.assertTrue(isinstance(job, Job))
H A Dtest_layer2.py33 from boto.glacier.vault import Job namespace
91 "JobDescription": "My ArchiveRetrieval Job",
303 self.job = Job(self.vault, FIXTURE_ARCHIVE_JOB)
/external/v8/test/mjsunit/compiler/
H A Dregress-8.js39 var Job = ""; variable
70 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Job))))),p);
/external/v8/tools/testrunner/local/
H A Dexecution.py117 class Job(object): class in inherits:object
143 class TestJob(Job):
/external/jetty/src/java/org/eclipse/jetty/util/
H A DIO.java70 static class Job implements Runnable class in class:IO
77 Job(InputStream in,OutputStream out) method in class:IO.Job
84 Job(Reader read,Writer write) method in class:IO.Job
128 Job job=new Job(in,out);
155 Job job=new Job(in,out);
/external/regex-re2/re2/
H A Dbitstate.cc25 struct Job { struct in namespace:re2
66 Job *job_; // stack of text positions to explore
108 Job* newjob = new Job[maxjob_];
113 LOG(DFATAL) << "Job stack overflow.";
134 Job* j = &job_[njob_++];
168 // VLOG(0) << "Job: " << ip->id() << " "
326 job_ = new Job[maxjob_];
/external/autotest/frontend/afe/
H A Dresources.py433 _job_fields = models.Job.get_field_dict()
579 class Job(resource_lib.InstanceEntry): class in inherits:resource_lib.InstanceEntry
581 model = models.Job
615 Job._StatusConstraint())
622 return cls(request, models.Job.objects.get(id=job_id))
631 models.Job.objects.populate_relationships(instances, models.JobKeyval,
636 rep = super(Job, self).short_representation()
653 rep = super(Job, self).full_representation()
730 return models.Job.objects.get(id=job_id)
739 queryset = models.Job
[all...]
H A Dmodels.py276 """Gets the default drone set name, compatible with Job.add_object.
1102 """For compatibility with Job.add_object.
1207 class Job(dbmodels.Model, model_logic.ModelExtensions): class in inherits:dbmodels.Model, model_logic.ModelExtensions
1315 super(Job, self)._deserialize_relation(link, data)
1335 'Job id=%s is assigned to shard (%s). Cannot update it with %s '
1445 raise Exception('Job must have either control file or '
1566 query = Job.objects.raw(sql % {
1572 query = Job.objects.raw(
1579 Job.objects.filter(pk__in=job_ids).update(shard=shard)
1580 return list(Job
[all...]
/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;
/external/autotest/server/
H A Dfrontend.py296 job = Job(self, j)
877 class Job(RpcObject): class in inherits:RpcObject
899 self.job = Job(afe, self.job)
/external/autotest/frontend/tko/
H A Dmodels.py170 class Job(dbmodels.Model, model_logic.ModelExtensions): class in inherits:dbmodels.Model, model_logic.ModelExtensions
185 """Metadata for class Job."""
191 job = dbmodels.ForeignKey(Job)
204 job = dbmodels.ForeignKey(Job, db_column='job_idx')
530 query_set = Job.objects.join_custom_field(query_set, keyval_query,
/external/autotest/scheduler/
H A Dscheduler_models.py8 (particularly HostQueueEntry and Job) have considerable scheduler-specific logic
86 @param job: A Job object.
90 logging.error('Job is None, no metadata returned.')
98 logging.error('Job has missing attribute: %s', e)
167 # particular id. This prevents us from creating new Job() and Host()
169 # multiple HQEs often share the same Job.
475 self.job = Job(self.job_id)
684 @param status: Job status text. Mandatory.
685 @param summary: Job summary text. Optional.
690 job_stats = Job(i
924 class Job(DBObject): class in inherits:DBObject
[all...]
/external/mksh/src/
H A Djobs.c62 /* Job.flags values */
76 typedef struct job Job; typedef in typeref:struct:job
78 Job *next; /* next job in list */
115 static Job *job_list; /* job list */
116 static Job *last_job;
117 static Job *async_job;
139 static void j_set_async(Job *);
140 static void j_startjob(Job *);
141 static int j_waitj(Job *, int, const char *);
143 static void j_print(Job *, in
[all...]
/external/clang/lib/AST/
H A DExprConstant.cpp6894 struct Job { struct in class:__anon1170::DataRecursiveIntBinOpEvaluator
6899 Job() = default;
6900 Job(Job &&J) function in struct:__anon1170::DataRecursiveIntBinOpEvaluator::Job
6911 ~Job() {
6921 SmallVector<Job, 16> Queue;
6991 Queue.back().Kind = Job::AnyExprKind;
7143 Job &job = Queue.back();
7146 case Job::AnyExprKind: {
7149 job.Kind = Job
[all...]
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.jobs_3.7.0.v20150330-2103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.util_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/struts2/lib/
H A Djetty-util-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/util/ org/mortbay/util/ajax/ ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...

Completed in 1488 milliseconds

12