HomeSort by relevance Sort by last modified time
    Searched defs:Job (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/v8/tools/testrunner/local/
execution.py 117 class Job(object):
124 """Executes the job.
143 class TestJob(Job):
186 def RunTest(job, process_context):
187 return job.Run(process_context)
  /external/regex-re2/re2/
bitstate.cc 25 struct Job {
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_++];
148 // Pop job off stack.
168 // VLOG(0) << "Job: " << ip->id() << " "
326 job_ = new Job[maxjob_];
  /external/toolchain-utils/automation/common/
job.py 3 """A module for a job in the infrastructure."""
21 def __init__(self, job, src, dest=None):
26 self.job = job
53 class Job(object):
54 """A class representing a job whose commands will be executed."""
133 self.DependsOn(dependency.job)
145 return 'job-%d.log' % self.id
149 return os.path.join(self.WORKDIR_PREFIX, 'job-%d' % self.id)
153 return os.path.join(self.group.home_dir, 'job-%d' % self.id
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
TaskExecutor.java 39 * A singleton to queue and run {@link Task} with the {@link android.app.job.JobScheduler}. A task
47 * android.app.job.JobScheduler}, which is between {@link #onStartJob(Job, List)} and {@link
49 * data is stored in the {@link android.app.job.JobScheduler} instead of the process memory, so if
51 * TaskSchedulerJobService} will be scheduled to run the task. If the job is already scheduled, the
52 * new task will be pushed into the queue of the scheduled job. If the job is already running, the
53 * job will be queued in process memory.
59 * enter a "sleep", pushing all remaining task into a new job and end the current job
141 private Job job; field in class:TaskExecutor
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
ThreadPool.java 43 // A Job is like a Callable, but it has an addition JobContext parameter.
44 public interface Job<T> {
95 // Submit a job to the thread pool. The listener will be called when the
96 // job is finished (or cancelled).
97 public <T> Future<T> submit(Job<T> job, FutureListener<T> listener) {
98 Worker<T> w = new Worker<T>(job, listener);
103 public <T> Future<T> submit(Job<T> job) {
104 return submit(job, null)
    [all...]
  /external/autotest/frontend/tko/
models.py 170 class Job(dbmodels.Model, model_logic.ModelExtensions):
171 """Models a job."""
185 """Metadata for class Job."""
190 """Models a job keyval."""
191 job = dbmodels.ForeignKey(Job) variable in class:JobKeyval
204 job = dbmodels.ForeignKey(Job, db_column='job_idx') variable in class:Test
511 query_set = Job.objects.join_custom_field(query_set, keyval_query,
545 * job_keyval_fields: list of job keyval names. Each value will b
    [all...]
  /external/autotest/scheduler/
scheduler_models.py 8 (particularly HostQueueEntry and Job) have considerable scheduler-specific logic
14 one of these statuses, an email will be sent to the job's email_list.
81 def get_job_metadata(job):
82 """Get a dictionary of the job information.
84 The return value is a dictionary that includes job information like id,
85 name and parent job information. The value will be stored in metadata
88 @param job: A Job object.
89 @return: A dictionary containing the job id, owner and name.
91 if not job
    [all...]
  /external/autotest/server/
frontend.py 48 Standard way to print out the frontend objects (eg job, host, acl, label)
135 """Get job test statuses from the database.
137 Retrieve a set of fields from a job that reflect the status of each test
138 run within a job.
142 @param job_id: The afe job id to look up.
170 def get_status_counts(self, job, **data):
173 job_tag__startswith='%s-' % job, **data)
479 reply_debug=False, job=None):
480 self.job = job
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
Job.java 67 abstract public class Job implements Runnable {
68 private static final String TAG = "Job";
78 * A job is in canceled state as long as {@link #cancel()} is called on it, even after it is
110 * A simple progressable job, much like an AsyncTask, but with support
112 * @param service The service context in which this job is running.
120 Job(Context service, Listener listener, String id,
157 // handled within Job implementations. However, just in case catch them here.
353 .append("Job")
364 void onStart(Job job);
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 234 // class def modified: write it to an array and submit a write job
262 // clone the array and submit an entry write job
486 // class def modified: write it to an array and submit a write job
499 // clone the array and submit a file write job
577 // in overwrite mode, flush the job queue before going to the next directory:
702 // reset job queue position:
939 final Job job = m_jobs [j]; local
    [all...]
  /external/mksh/src/
jobs.c 54 #define JP_MEDIUM 2 /* print [job-num] -/+ command */
55 #define JP_LONG 3 /* print [job-num] -/+ pid command */
62 /* Job.flags values */
63 #define JF_STARTED 0x001 /* set when all processes in job are started */
64 #define JF_WAITING 0x002 /* set if j_waitj() is waiting on job */
76 typedef struct job Job;
77 struct job { struct
78 Job *next; /* next job in list *
85 int job; \/* job number: %n *\/ member in struct:job
1652 int job = 0; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
DdmsPlugin.java 44 import org.eclipse.core.runtime.jobs.Job;
279 * in a Job to ensure that DDMS is loaded, so that the other plug-ins can load.
292 // get the other configElements and instantiante them in a Job.
293 new Job(Messages.DdmsPlugin_DDMS_Post_Create_Init) {
    [all...]
  /external/autotest/frontend/afe/
models.py 26 # job options and user preferences
42 scheduled for a job at the same time as other hosts sharing that label.
48 The job.synch_count is considered the minimum.
71 def enqueue_job(self, job, is_template=False):
72 """Enqueue a job on an associated atomic group of hosts.
74 @param job: A job to enqueue.
77 queue_entry = HostQueueEntry.create(atomic_group=self, job=job,
104 label is requested by the job/test (either as the meta_host o
1095 def job(self): member in class:ParameterizedJob
1544 job = dbmodels.ForeignKey(Job) variable in class:JobKeyval
1587 job = dbmodels.ForeignKey(Job) variable in class:IneligibleHostQueue
1624 job = dbmodels.ForeignKey(Job) variable in class:HostQueueEntry
    [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.jobs_3.7.0.v20150330-2103.jar 
  /external/clang/lib/AST/
ExprConstant.cpp 7415 Job &job = Queue.back(); local
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-importexport/1.11.18/
aws-java-sdk-importexport-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar 
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.14.0/
builder-0.14.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.14.1/
builder-0.14.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.14.2/
builder-0.14.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.14.4/
builder-0.14.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/1.0.0/
builder-1.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/1.0.0-rc1/
builder-1.0.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/1.0.0-rc4/
builder-1.0.0-rc4.jar 

Completed in 2249 milliseconds

1 2 3 4 5 6