Lines Matching refs:job
10 class job(object):
11 """Represents a job."""
35 # This table is used to refer to skylab task / afe job corresponding to
42 Read job keyval files.
44 @param dir: String name of directory containing job keyval files.
46 @return A dictionary containing job keyvals.
145 def parse_test(cls, job, subdir, testname, status, reason, test_kernel,
150 Given a job and the basic metadata about the test that can be
155 @param job: A job object.
171 attributes, perf_values = tast.load_tast_test_aux_results(job,
176 iteration_keyval = os.path.join(job.dir, subdir,
181 perf_values_file = os.path.join(job.dir, subdir,
191 test_keyval = os.path.join(job.dir, subdir, 'keyval')
199 host_keyval = cls.parse_host_keyval(job.dir, job.machine)
212 job.machine, started_time, finished_time,
217 def parse_partial_test(cls, job, subdir, testname, reason, test_kernel,
222 Given a job and the basic metadata available when a test is
227 @param job: A job object.
240 job.machine, started_time, None, [], {}, [], [])
266 @param job_dir: The string directory name of the associated job.
272 # The "real" job dir may be higher up in the directory tree.
275 return {} # We can't find a top-level job dir with job keyvals.
290 @param job_dir: The string directory name of the associated job.
312 Parse job keyvals.
314 @param job_dir: The string directory name of the associated job.
316 @return A dictionary representing the job keyvals.
319 # The job keyval is <job_dir>/keyval if it exists.
327 @param job_dir: The string directory name of the associated job.