Home
last modified time | relevance | path

Searched refs:jobId (Results 1 – 13 of 13) sorted by relevance

/external/perfetto/infra/ci/frontend/static/
Dscript.js332 function renderJobLink(jobId, jobStatus) { argument
343 const eventHandlers = jobId ? { onmouseover: () => showLogTail(jobId) } : {};
344 const logUrl = jobId ? `#!/logs/${jobId}` : '#';
353 let jobId = undefined;
363 jobId = id;
366 return m('td.job', renderJobLink(jobId, jobStatus));
432 showFullLog(vnode.attrs.jobId);
480 const makeJobRow = function (jobId) { argument
481 const job = state.dbJobs[jobId] || {};
484 renderJobLink(jobId, job ? job.status : undefined),
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowJobScheduler.java28 protected abstract void cancel(int jobId); in cancel() argument
38 public abstract JobInfo getPendingJob(int jobId); in getPendingJob() argument
43 public abstract void failOnJob(int jobId); in failOnJob() argument
62 public void cancel(int jobId) { in cancel() argument
63 scheduledJobs.remove(jobId); in cancel()
77 public JobInfo getPendingJob(int jobId) { in getPendingJob() argument
78 return scheduledJobs.get(jobId); in getPendingJob()
89 public void failOnJob(int jobId) { in failOnJob() argument
90 jobsToFail.add(jobId); in failOnJob()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/scheduler/
DPlatformScheduler.java54 private final int jobId; field in PlatformScheduler
66 public PlatformScheduler(Context context, int jobId) { in PlatformScheduler() argument
68 this.jobId = jobId; in PlatformScheduler()
76 buildJobInfo(jobId, jobServiceComponentName, requirements, serviceAction, servicePackage); in schedule()
78 logd("Scheduling job: " + jobId + " result: " + result); in schedule()
84 logd("Canceling job: " + jobId); in cancel()
85 jobScheduler.cancel(jobId); in cancel()
92 int jobId, in buildJobInfo() argument
97 JobInfo.Builder builder = new JobInfo.Builder(jobId, jobServiceComponentName); in buildJobInfo()
/external/autotest/frontend/client/src/autotest/afe/
DJobDetailView.java86 protected int jobId = NO_JOB_ID; field in JobDetailView
140 params.put("id", new JSONNumber(jobId)); in fetchData()
218 pointToResults(getResultsURL(jobId), getLogsURL(jobTag), in fetchData()
219 getOldResultsUrl(jobId), getTriageUrl(jobId), in fetchData()
220 getEmbeddedUrl(jobId)); in fetchData()
225 jobFilter.setParameter("job", new JSONNumber(jobId)); in fetchData()
228 parentJobIdFliter.setParameter("parent_job", new JSONNumber(jobId)); in fetchData()
268 int jobId = (int) row.get("id").isNumber().doubleValue(); in initialize()
269 childJobsListener.onJobSelected(jobId); in initialize()
379 params.put("job__id", new JSONNumber(jobId)); in abortJob()
[all …]
DAfeClient.java50 public void onJobCreated(int jobId) {
51 showJob(jobId);
78 public void onJobSelected(int jobId) { in finishLoading()
79 showJob(jobId); in finishLoading()
105 public void onJobSelected(int jobId) { in finishLoading()
106 showJob(jobId); in finishLoading()
123 protected void showJob(int jobId) { in showJob() argument
125 jobDetail.updateObjectId(Integer.toString(jobId)); in showJob()
DHostDetailView.java56 public void onJobSelected(int jobId); in onJobSelected() argument
137 JSONString jobId = blank, owner = blank, name = blank; in preprocessRow() local
140 jobId = new JSONString(Integer.toString(id)); in preprocessRow()
145 row.put("job__id", jobId); in preprocessRow()
344 int jobId = (int) job.get("id").isNumber().doubleValue(); in initialize()
345 hostDetailListener.onJobSelected(jobId); in initialize()
DJobListView.java63 public void onJobSelected(int jobId); in onJobSelected() argument
164 int jobId = (int) row.get("id").isNumber().doubleValue(); in initialize()
165 selectListener.onJobSelected(jobId); in initialize()
DAbortSynchronousDialog.java83 JSONValue jobId = entry.get("job").isObject().get("id"); in processJobs() local
85 groupArgs.put("job__id", jobId); in processJobs()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowJobSchedulerTest.java119 int jobId = 99; in getPendingJob_withValidId() local
121 new JobInfo.Builder(jobId, new ComponentName(context, "component_class_name")) in getPendingJob_withValidId()
127 JobInfo retrievedJobInfo = jobScheduler.getPendingJob(jobId); in getPendingJob_withValidId()
135 int jobId = 99; in getPendingJob_withInvalidId() local
138 new JobInfo.Builder(jobId, new ComponentName(context, "component_class_name")) in getPendingJob_withInvalidId()
/external/python/google-api-python-client/samples/coordinate/
Dcoordinate.py92 jobId=insert_result['id'],
/external/python/apitools/samples/bigquery_sample/bigquery_v2/
Dbigquery_v2_messages.py117 jobId = _messages.StringField(1, required=True) variable in BigqueryJobsCancelRequest
136 jobId = _messages.StringField(1, required=True) variable in BigqueryJobsGetQueryResultsRequest
152 jobId = _messages.StringField(1, required=True) variable in BigqueryJobsGetRequest
1385 jobId = _messages.StringField(1) variable in JobReference
/external/perfetto/docs/design-docs/
Dcontinuous-integration.md104 `/jobs_running` and updating the `/jobs/$jobId/status` fields.
/external/autotest/frontend/client/src/autotest/afe/create/
DCreateJobViewPresenter.java110 public void onJobCreated(int jobId); in onJobCreated() argument