Home | History | Annotate | Download | only in server

Lines Matching refs:job

25                              results_directory=None, extra_args=[], job=None,
36 Construct an autoserv command from a job or host queue entry.
41 job on. Leave as None or empty string for hostless job
47 @param job: Job object. If supplied, -u owner, -l name, and --test-retry,
49 @param queue_entry: HostQueueEntry object. If supplied and no job
50 was supplied, this will be used to lookup the job.
97 if job or queue_entry:
98 if not job:
99 job = queue_entry.job
101 owner = getattr(job, 'owner', None)
102 name = getattr(job, 'name', None)
103 test_retry = getattr(job, 'test_retry', None)
104 control_type = getattr(job, 'control_type', None)
140 def _autoserv_command_line(machines, extra_args, job=None, queue_entry=None,
148 @param job - Job object - If supplied, -u owner, -l name, --test-retry,
150 @param queue_entry - A HostQueueEntry object - If supplied and no Job
151 object was supplied, this will be used to lookup the Job object.
163 extra_args=extra_args, job=job, queue_entry=queue_entry,