Home
last modified time | relevance | path

Searched full:jobs (Results 1 – 25 of 1483) sorted by relevance

12345678910>>...60

/external/autotest/tko/migrations/
D003_add_test_timestamps.py30 jobs.tag AS job_tag,
31 jobs.label AS job_label,
32 jobs.username AS job_username,
33 jobs.queued_time AS job_queued_time,
34 jobs.started_time AS job_started_time,
35 jobs.finished_time AS job_finished_time,
44 INNER JOIN jobs ON jobs.job_idx = tests.job_idx
45 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
60 jobs.tag AS job_tag,
61 jobs.label AS job_label,
[all …]
D004_add_test_started.py31 jobs.tag AS job_tag,
32 jobs.label AS job_label,
33 jobs.username AS job_username,
34 jobs.queued_time AS job_queued_time,
35 jobs.started_time AS job_started_time,
36 jobs.finished_time AS job_finished_time,
45 INNER JOIN jobs ON jobs.job_idx = tests.job_idx
46 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
62 jobs.tag AS job_tag,
63 jobs.label AS job_label,
[all …]
D002_add_job_timestamps.py12 ALTER TABLE jobs ADD COLUMN queued_time datetime NULL;
13 ALTER TABLE jobs ADD COLUMN started_time datetime NULL;
14 ALTER TABLE jobs ADD COLUMN finished_time datetime NULL;
19 ALTER TABLE jobs DROP queued_time, DROP started_time, DROP finished_time;
33 jobs.tag AS job_tag,
34 jobs.label AS job_label,
35 jobs.username AS job_username,
36 jobs.queued_time AS job_queued_time,
37 jobs.started_time AS job_started_time,
38 jobs.finished_time AS job_finished_time,
[all …]
D031_rename_tko_tables.py185 jobs.tag AS job_tag,
186 jobs.label AS job_label,
187 jobs.username AS job_username,
188 jobs.queued_time AS job_queued_time,
189 jobs.started_time AS job_started_time,
190 jobs.finished_time AS job_finished_time,
199 INNER JOIN jobs ON jobs.job_idx = tests.job_idx
200 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
216 jobs.tag AS job_tag,
217 jobs.label AS job_label,
[all …]
D030_add_afe_job_id_to_jobs.py2 ALTER TABLE jobs
5 UPDATE jobs
10 ON jobs(afe_job_id);
23 jobs.tag AS job_tag,
24 jobs.label AS job_name,
25 jobs.username AS job_owner,
26 jobs.queued_time AS job_queued_time,
27 jobs.started_time AS job_started_time,
28 jobs.finished_time AS job_finished_time,
29 jobs.afe_job_id AS afe_job_id,
[all …]
D013_fix_perf_view.py21 jobs.tag AS job_tag,
22 jobs.label AS job_label,
23 jobs.username AS job_username,
24 jobs.queued_time AS job_queued_time,
25 jobs.started_time AS job_started_time,
26 jobs.finished_time AS job_finished_time,
38 INNER JOIN jobs ON jobs.job_idx = tests.job_idx
39 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
57 jobs.tag AS job_tag,
58 jobs.label AS job_label,
[all …]
D015_support_graphing_interface.py39 jobs.tag AS job_tag,
40 jobs.label AS job_name,
41 jobs.username AS job_owner,
42 jobs.queued_time AS job_queued_time,
43 jobs.started_time AS job_started_time,
44 jobs.finished_time AS job_finished_time,
53 LEFT OUTER JOIN jobs ON jobs.job_idx = tests.job_idx
54 LEFT OUTER JOIN machines ON machines.machine_idx = jobs.machine_idx
75 jobs.tag AS job_tag,
76 jobs.label AS job_name,
[all …]
D014_add_test_view_2.py13 jobs.tag AS job_tag,
14 jobs.label AS job_name,
15 jobs.username AS job_owner,
16 jobs.queued_time AS job_queued_time,
17 jobs.started_time AS job_started_time,
18 jobs.finished_time AS job_finished_time,
27 INNER JOIN jobs ON jobs.job_idx = tests.job_idx
28 INNER JOIN machines ON machines.machine_idx = jobs.machine_idx
D016_modify_perf_view_2.py23 jobs.tag AS job_tag,
24 jobs.label AS job_name,
25 jobs.username AS job_owner,
26 jobs.queued_time AS job_queued_time,
27 jobs.started_time AS job_started_time,
28 jobs.finished_time AS job_finished_time,
40 LEFT OUTER JOIN jobs ON jobs.job_idx = tests.job_idx
41 LEFT OUTER JOIN machines ON machines.machine_idx = jobs.machine_idx
/external/skqp/bin/
Dtry.py9 """Submit one or more try jobs."""
26 JOBS_JSON = os.path.join(INFRA_BOTS, 'jobs.json')
37 """Obtain the list of jobs from the given repo."""
48 jobs = json.loads(subprocess.check_output([
49 utils.GIT, 'show', 'master:infra/bots/jobs.json']))
50 return (BUCKET_SKIA_INTERNAL, jobs)
55 d = 'Helper script for triggering try jobs defined in %s.' % JOBS_JSON
58 help='Just list the jobs; do not trigger anything.')
60 help=('If set, include internal jobs. You must have '
66 # Load and filter the list of jobs.
[all …]
/external/skia/bin/
Dtry.py9 """Submit one or more try jobs."""
51 """Obtain the list of jobs from the given repo."""
62 jobs = json.loads(subprocess.check_output([
64 return (BUCKET_SKIA_INTERNAL, jobs)
69 d = 'Helper script for triggering try jobs.'
72 help='Just list the jobs; do not trigger anything.')
74 help=('If set, include internal jobs. You must have '
84 print('Not on any branch; cannot trigger try jobs.')
105 # Load and filter the list of jobs.
106 jobs = []
[all …]
/external/libcups/conf/
Dcupsd.conf.in62Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notific…
75Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer St…
106Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notific…
120Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer St…
152Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notific…
166Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer St…
/external/autotest/frontend/migrations/
D022_implement_sync_count.py2 ALTER TABLE jobs ADD COLUMN synchronizing tinyint(1) default NULL;
6 ALTER TABLE jobs ADD COLUMN synch_type int(11) default NULL;
7 UPDATE jobs SET synch_type = 1;
8 UPDATE jobs SET synch_type = 2 WHERE synch_count > 1;
19 SELECT jobs.id, jobs.synch_type, COUNT(1) FROM jobs
20 INNER JOIN host_queue_entries AS hqe ON jobs.id = hqe.job_id
21 GROUP BY jobs.id""")
39 manager.execute('UPDATE jobs SET synch_count = 1 WHERE synch_type = 1')
40 manager.execute('UPDATE jobs SET synch_count = 2 '
43 manager.execute('ALTER TABLE jobs DROP COLUMN synch_type')
[all …]
/external/libcups/templates/da/
Djobs-header.tmpl1 …?:<FORM ACTION="{?printer_name=?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="SUBMIT" …
2 …=?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="which_jobs" VALUE="compl…
3 …_name=?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="which_jobs" VALUE="…
5 …?which_jobs=?Jobs oplistet i udskrivningsrækkefølge - tilbageholdte jobs vises først.:{which_jobs=
/external/libcups/templates/
Djobs-header.tmpl1 …:<FORM ACTION="{?printer_name=?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="SUBMIT" V…
2 …?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="which_jobs" VALUE="comple…
3 …_name=?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="which_jobs" VALUE="…
5 …GN="CENTER">{?which_jobs=?Jobs listed in print order; held jobs appear first.:{which_jobs=Jobs lis…
/external/python/cpython3/.azure-pipelines/
Dwindows-release.yml28 jobs:
35 jobs:
42 jobs:
50 jobs:
56 jobs:
64 jobs:
71 jobs:
78 jobs:
85 jobs:
92 jobs:
[all …]
/external/perfetto/infra/ci/controller/
Dcontroller.py60 queue_name='deferred-jobs',
132 ''' Poll for new CLs and asynchronously enqueue jobs for them.'''
146 # Only submit jobs for patchsets that are either uploaded by a trusted
162 '''Creates the worker jobs (defined in config.py) for the given CL.
164 Jobs are keyed by timestamp-cl-patchset-config to get a fair schedule (workers
165 pull jobs ordered by the key above).
167 |patch_obj|, so the whole set of CL descriptor + jobs can be added atomically
171 logging.info('Enqueueing jobs fos cl %s', src)
176 patch_obj['jobs/' + job_id] = {
184 patch_obj[src]['jobs'][job_id] = 0
[all …]
/external/skqp/site/dev/testing/
Dautomated_testing.md19 may automatically retry tasks within its set limits. Jobs are not retried.
20 Multiple jobs may share the same task, for example, tests on two different
23 Each Skia repository has an `infra/bots/tasks.json` file which defines the jobs
24 and tasks for the repo. Most jobs will run at every commit, but it is possible
25 to specify nightly and weekly jobs as well. For convenience, most repos also
41 Try Jobs
45 repo. You need to have permission to trigger try jobs; if you need permission,
52 or using `bin/try`, a small wrapper for `git cl try` which helps to choose try jobs.
96 <a name="adding-new-jobs"></a>
97 Adding new jobs
[all …]
/external/skia/site/docs/dev/testing/
Dautomated_testing.md24 may automatically retry tasks within its set limits. Jobs are not retried.
25 Multiple jobs may share the same task, for example, tests on two different
28 Each Skia repository has an `infra/bots/tasks.json` file which defines the jobs
29 and tasks for the repo. Most jobs will run at every commit, but it is possible
30 to specify nightly and weekly jobs as well. For convenience, most repos also
45 Try Jobs
49 repo. You need to have permission to trigger try jobs; if you need permission,
56 or using `bin/try`, a small wrapper for `git cl try` which helps to choose try jobs.
100 <a name="adding-new-jobs"></a>
101 Adding new jobs
[all …]
/external/mesa3d/src/panfrost/lib/
Dpan_scoreboard.c31 * There are various types of Mali jobs:
43 * of Mali jobs together forming a linked list. Within the job chain, each Mali
44 * job can set (up to) two dependencies on other earlier jobs in the chain.
53 * job, and tiler jobs must depend on it.
55 * - Vertex jobs and tiler jobs are independent.
61 * - Tiler jobs must depend on the write value job (chained or otherwise).
63 * - Tiler jobs must be strictly ordered. So each tiler job must depend on the
66 * - Jobs linking via next_job has no bearing on order of execution, rather it
67 * just establishes the linked list of jobs, EXCEPT:
73 * - Write value jobs are used to write a zero into a magic tiling field, which
[all …]
/external/zstd/contrib/seekable_format/examples/
Dparallel_compression.c141 struct job* jobs = malloc_orDie(sizeof(struct job) * numFrames); in compressFile_orDie() local
150 jobs[i].src = in; in compressFile_orDie()
151 jobs[i].srcSize = inSize; in compressFile_orDie()
152 jobs[i].dst = out; in compressFile_orDie()
153 jobs[i].dstSize = dstSize; in compressFile_orDie()
154 jobs[i].compressionLevel = cLevel; in compressFile_orDie()
155 jobs[i].done = 0; in compressFile_orDie()
156 POOL_add(pool, compressFrame, &jobs[i]); in compressFile_orDie()
162 while (!jobs[i].done) SLEEP(5); /* wake up every 5 milliseconds to check */ in compressFile_orDie()
163 fwrite_orDie(jobs[i].dst, jobs[i].dstSize, fout); in compressFile_orDie()
[all …]
/external/libcups/man/
Dlpstat.127 .I which-jobs
66 \fBlpstat\fR displays status information about the current classes, jobs, and printers.
67 When run with no arguments, \fBlpstat\fR will list active jobs queued by the current user.
78 Shows the ranking of print jobs.
83 \fB\-W \fIwhich-jobs\fR
84 Specifies which jobs to show, "completed" or "not-completed" (the default).
105 Shows a long listing of printers, classes, or jobs.
108 Shows the jobs queued on the specified destinations.
109 If no destinations are specified all jobs are shown.
127 Shows a list of print jobs queued by the specified users.
[all …]
/external/autotest/frontend/client/src/autotest/afe/
DJobListView.java42 private static final String[] statusRadioButtonLabels = {"Queued Jobs", "Running Jobs",
43 "Finished Jobs", "All Jobs"};
47 private static final String[] typeRadioButtonLabels = {"Parent Jobs", "Child Jobs",
48 "All Jobs"};
123 NotifyManager.getInstance().showError("No jobs selected"); in abortSelectedJobs()
189 // All Jobs is selected by default in initialize()
202 // All Jobs is selected by default in initialize()
210 addWidget(new ToolTip("?", "Suite jobs: jobs with child jobs. " + in initialize()
211 "Sub jobs: jobs with a parent jobs. "), in initialize()
259 menu.addItem("Abort jobs", new Command() { in getActionMenu()
/external/libcups/cups/
Dutil.c29 * Pass @code CUPS_JOBID_ALL@ to cancel all jobs or @code CUPS_JOBID_CURRENT@
40 …I - Job ID, @code CUPS_JOBID_CURRENT@ for the current job, or @code CUPS_JOBID_ALL@ for all jobs */ in cupsCancelJob()
50 * Canceled jobs remain in the job history while purged jobs are removed
53 * Pass @code CUPS_JOBID_ALL@ to cancel all jobs or @code CUPS_JOBID_CURRENT@
65 …I - Job ID, @code CUPS_JOBID_CURRENT@ for the current job, or @code CUPS_JOBID_ALL@ for all jobs */ in cupsCancelJob2()
98 * [purge-job] or [purge-jobs] in cupsCancelJob2()
115 snprintf(uri, sizeof(uri), "ipp://localhost/jobs/%d", job_id); in cupsCancelJob2()
126 ippAddBoolean(request, IPP_TAG_OPERATION, "purge-jobs", 0); in cupsCancelJob2()
132 ippDelete(cupsDoRequest(http, request, "/jobs/")); in cupsCancelJob2()
244 cupsFreeJobs(int num_jobs, /* I - Number of jobs */ in cupsFreeJobs()
[all …]
/external/llvm-project/lld/test/ELF/lto/
Dthinlto.ll9 ; RUN: ld.lld -save-temps --thinlto-jobs=1 -shared %t1.o %t2.o -o %t3
15 ; RUN: ld.lld -save-temps --thinlto-jobs=2 -shared %t1.o %t2.o -o %t3
19 ;; --plugin-opt=jobs= is an alias.
21 ; RUN: ld.lld -save-temps --plugin-opt=jobs=2 -shared %t1.o %t2.o -o %t3
25 ;; --thinlto-jobs= defaults to --threads=.
31 ;; --thinlto-jobs= overrides --threads=.
33 ; RUN: ld.lld -save-temps --threads=1 --plugin-opt=jobs=2 -shared %t1.o %t2.o -o %t3
39 ; RUN: ld.lld -save-temps --thinlto-jobs=all -shared %t1.o %t2.o -o %t3
45 ; RUN: ld.lld -save-temps --thinlto-jobs=100 -shared %t1.o %t2.o -o %t3
51 …UN: not ld.lld -save-temps --thinlto-jobs=foo -shared %t1.o %t2.o -o %t3 2>&1 | FileCheck %s --che…
[all …]

12345678910>>...60