/aosp_15_r20/external/libcups/scheduler/ |
H A D | job.c | 2 * Job management routines for the CUPS scheduler. 28 * Design Notes for Job Management 35 * processing Do nothing/start job 41 * Finalize clears the printer <-> job association, deletes the status 47 * We unload the job attributes when they are not needed to reduce overall 48 * memory consumption. We don't unload jobs where job->state_value < 49 * IPP_JOB_STOPPED, job->printer != NULL, or job->access_time is recent. 53 * When a job is started, a status buffer, several pipes, a security 54 * profile, and a backend process are created for the life of that job. 55 * These are shared for every file in a job. For remote print jobs, the [all …]
|
H A D | ipp.c | 37 static int add_file(cupsd_client_t *con, cupsd_job_t *job, 41 static void add_job_subscriptions(cupsd_client_t *con, cupsd_job_t *job); 42 static void add_job_uuid(cupsd_job_t *job); 48 cupsd_job_t *job); 59 static int copy_banner(cupsd_client_t *con, cupsd_job_t *job, 65 cupsd_job_t *job, 107 static void save_auth_info(cupsd_client_t *con, cupsd_job_t *job, 124 static int validate_user(cupsd_job_t *job, cupsd_client_t *con, const char *owner, char *username, … 139 ipp_attribute_t *uri = NULL; /* Printer or job URI attribute */ in cupsdProcessIPPRequest() 241 * printer-uri/job-uri in cupsdProcessIPPRequest() [all …]
|
/aosp_15_r20/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/ |
H A D | JobStatusTest.java | 17 package com.android.server.job.controllers; 25 import static com.android.server.job.JobSchedulerService.ACTIVE_INDEX; 26 import static com.android.server.job.JobSchedulerService.EXEMPTED_INDEX; 27 import static com.android.server.job.JobSchedulerService.FREQUENT_INDEX; 28 import static com.android.server.job.JobSchedulerService.NEVER_INDEX; 29 import static com.android.server.job.JobSchedulerService.RARE_INDEX; 30 import static com.android.server.job.JobSchedulerService.RESTRICTED_INDEX; 31 import static com.android.server.job.JobSchedulerService.WORKING_INDEX; 32 import static com.android.server.job.JobSchedulerService.sElapsedRealtimeClock; 33 import static com.android.server.job.controllers.JobStatus.CONSTRAINT_BACKGROUND_NOT_RESTRICTED; [all …]
|
/aosp_15_r20/external/libcups/examples/ |
H A D | ipp-1.1.test | 133 # Test Print-Job operation 137 NAME "RFC 8011 section 4.2.1: Print-Job Operation" 138 OPERATION Print-Job 144 ATTR name job-name $filename 153 STATUS server-error-job-canceled 156 EXPECT job-uri OF-TYPE uri COUNT 1 IN-GROUP job-attributes-tag WITH-VALUE "$IPP_URI_SCHEME" 157 EXPECT job-id OF-TYPE integer COUNT 1 IN-GROUP job-attributes-tag 159 EXPECT job-state OF-TYPE unknown|enum COUNT 1 IN-GROUP job-attributes-tag 161 EXPECT job-state WITH-VALUE 7,8,9 DEFINE-MATCH PRINT_JOB_COMPLETED 162 EXPECT job-state-reasons OF-TYPE keyword IN-GROUP job-attributes-tag [all …]
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/v3d/ |
H A D | v3d_job.c | 42 v3d_job_free(struct v3d_context *v3d, struct v3d_job *job) in v3d_job_free() argument 44 set_foreach(job->bos, entry) { in v3d_job_free() 49 _mesa_hash_table_remove_key(v3d->jobs, &job->key); in v3d_job_free() 51 if (job->write_prscs) { in v3d_job_free() 52 set_foreach(job->write_prscs, entry) { in v3d_job_free() 59 for (int i = 0; i < job->nr_cbufs; i++) { in v3d_job_free() 60 if (job->cbufs[i]) { in v3d_job_free() 62 job->cbufs[i]->texture); in v3d_job_free() 63 pipe_surface_reference(&job->cbufs[i], NULL); in v3d_job_free() 66 if (job->zsbuf) { in v3d_job_free() [all …]
|
H A D | v3dx_rcl.c | 87 store_general(struct v3d_job *job, in store_general() argument 141 assert((job->bbuf && job->bbuf->texture->nr_samples > 1) || in store_general() 142 (job->dbuf && job->dbuf->texture->nr_samples <= 1)); in store_general() 166 v3d_rcl_emit_loads(struct v3d_job *job, struct v3d_cl *cl, int layer) in v3d_rcl_emit_loads() argument 171 assert(!job->bbuf || job->load == 0); in v3d_rcl_emit_loads() 172 assert(!job->bbuf || job->nr_cbufs <= 1); in v3d_rcl_emit_loads() 174 uint32_t loads_pending = job->bbuf ? job->store : job->load; in v3d_rcl_emit_loads() 176 for (int i = 0; i < job->nr_cbufs; i++) { in v3d_rcl_emit_loads() 181 struct pipe_surface *psurf = job->bbuf ? job->bbuf : job->cbufs[i]; in v3d_rcl_emit_loads() 182 assert(!job->bbuf || i == 0); in v3d_rcl_emit_loads() [all …]
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_job.c | 35 vc4_job_free(struct vc4_context *vc4, struct vc4_job *job) in vc4_job_free() argument 37 struct vc4_bo **referenced_bos = job->bo_pointers.base; in vc4_job_free() 38 for (int i = 0; i < cl_offset(&job->bo_handles) / 4; i++) { in vc4_job_free() 42 _mesa_hash_table_remove_key(vc4->jobs, &job->key); in vc4_job_free() 44 if (job->color_write) { in vc4_job_free() 46 job->color_write->texture); in vc4_job_free() 47 pipe_surface_reference(&job->color_write, NULL); in vc4_job_free() 49 if (job->msaa_color_write) { in vc4_job_free() 51 job->msaa_color_write->texture); in vc4_job_free() 52 pipe_surface_reference(&job->msaa_color_write, NULL); in vc4_job_free() [all …]
|
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/ |
H A D | Job.kt | 11 // --------------- core job interfaces --------------- 14 * A background job. Conceptually, a job is a cancellable thing with a life-cycle that 22 * The most basic instances of `Job` interface are created like this: 24 * - **Coroutine job** is created with [launch][CoroutineScope.launch] coroutine builder. 26 * - **[CompletableJob]** is created with a `Job()` factory function. 29 …* Conceptually, an execution of a job does not produce a result value. Jobs are launched solely fo… 30 * side effects. See [Deferred] interface for a job that produces a result. 32 * ### Job states 34 * A job has the following states: 45 …* Usually, a job is created in the _active_ state (it is created and started). However, coroutine … [all …]
|
/aosp_15_r20/external/google-cloud-java/java-talent/proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/ |
H A D | JobOrBuilder.java | 17 // source: google/cloud/talent/v4beta1/job.proto 23 // @@protoc_insertion_point(interface_extends:google.cloud.talent.v4beta1.Job) 30 * Required during job update. 31 * The resource name for the job. This is generated by the service when a 32 * job is created. 38 * Use of this field in job queries and API calls is preferred over the use of 39 * [requisition_id][google.cloud.talent.v4beta1.Job.requisition_id] since this 52 * Required during job update. 53 * The resource name for the job. This is generated by the service when a 54 * job is created. [all …]
|
H A D | Job.java | 17 // source: google/cloud/talent/v4beta1/job.proto 25 * A Job resource represents a job posting (also referred to as a "job listing" 26 * or "job requisition"). A job belongs to a 28 * responsible for the job. 31 * Protobuf type {@code google.cloud.talent.v4beta1.Job} 33 public final class Job extends com.google.protobuf.GeneratedMessageV3 class 35 // @@protoc_insertion_point(message_implements:google.cloud.talent.v4beta1.Job) 38 // Use Job.newBuilder() to construct. 39 private Job(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Job() method in Job 43 private Job() { in Job() method in Job [all …]
|
/aosp_15_r20/external/google-cloud-java/java-talent/proto-google-cloud-talent-v4/src/main/proto/google/cloud/talent/v4/ |
H A D | job_service.proto | 26 import "google/cloud/talent/v4/job.proto"; 39 // A service handles job management, including job CRUD, enumeration and search. 46 // Creates a new job. 48 // Typically, the job becomes searchable within 10 seconds, but it may take 50 rpc CreateJob(CreateJobRequest) returns (Job) { 53 body: "job" 55 option (google.api.method_signature) = "parent,job"; 72 // Retrieves the specified job, whose status is OPEN or recently EXPIRED 74 rpc GetJob(GetJobRequest) returns (Job) { 81 // Updates specified job. [all …]
|
/aosp_15_r20/external/googleapis/google/cloud/talent/v4/ |
H A D | job_service.proto | 26 import "google/cloud/talent/v4/job.proto"; 39 // A service handles job management, including job CRUD, enumeration and search. 46 // Creates a new job. 48 // Typically, the job becomes searchable within 10 seconds, but it may take 50 rpc CreateJob(CreateJobRequest) returns (Job) { 53 body: "job" 55 option (google.api.method_signature) = "parent,job"; 72 // Retrieves the specified job, whose status is OPEN or recently EXPIRED 74 rpc GetJob(GetJobRequest) returns (Job) { 81 // Updates specified job. [all …]
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_job.c | 54 lima_get_fb_info(struct lima_job *job) in lima_get_fb_info() argument 56 struct lima_context *ctx = job->ctx; in lima_get_fb_info() 57 struct lima_job_fb_info *fb = &job->fb; in lima_get_fb_info() 58 struct lima_surface *surf = lima_surface(job->key.cbuf); in lima_get_fb_info() 61 surf = lima_surface(job->key.zsbuf); in lima_get_fb_info() 141 lima_job_free(struct lima_job *job) in lima_job_free() argument 143 struct lima_context *ctx = job->ctx; in lima_job_free() 145 _mesa_hash_table_remove_key(ctx->jobs, &job->key); in lima_job_free() 147 if (job->key.cbuf && (job->resolve & PIPE_CLEAR_COLOR0)) in lima_job_free() 148 _mesa_hash_table_remove_key(ctx->write_jobs, job->key.cbuf->texture); in lima_job_free() [all …]
|
/aosp_15_r20/external/googleapis/google/cloud/talent/v4beta1/ |
H A D | job_service.proto | 26 import "google/cloud/talent/v4beta1/job.proto"; 39 // A service handles job management, including job CRUD, enumeration and search. 46 // Creates a new job. 48 // Typically, the job becomes searchable within 10 seconds, but it may take 50 rpc CreateJob(CreateJobRequest) returns (Job) { 59 option (google.api.method_signature) = "parent,job"; 80 // Retrieves the specified job, whose status is OPEN or recently EXPIRED 82 rpc GetJob(GetJobRequest) returns (Job) { 90 // Updates specified job. 94 rpc UpdateJob(UpdateJobRequest) returns (Job) { [all …]
|
/aosp_15_r20/external/google-cloud-java/java-talent/proto-google-cloud-talent-v4beta1/src/main/proto/google/cloud/talent/v4beta1/ |
H A D | job_service.proto | 26 import "google/cloud/talent/v4beta1/job.proto"; 39 // A service handles job management, including job CRUD, enumeration and search. 46 // Creates a new job. 48 // Typically, the job becomes searchable within 10 seconds, but it may take 50 rpc CreateJob(CreateJobRequest) returns (Job) { 59 option (google.api.method_signature) = "parent,job"; 80 // Retrieves the specified job, whose status is OPEN or recently EXPIRED 82 rpc GetJob(GetJobRequest) returns (Job) { 90 // Updates specified job. 94 rpc UpdateJob(UpdateJobRequest) returns (Job) { [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tfrt/python_tests/regression_tests/ |
H A D | large.disabled.mlir | 2 …%0 = "tf.RightShift"(%V__0, %V__0) { device = "/job:localhost/replica:0/task:0/device:CPU:0" } : (… 3 …%1 = "tf.Ceil"(%V__1) { device = "/job:localhost/replica:0/task:0/device:CPU:0" } : (tensor<?x?x?x… 4 …%2 = "tf.Shape"(%1) { device = "/job:localhost/replica:0/task:0/device:CPU:0" } : (tensor<?x?x?x?x… 5 …%dims4 = "tf.Const"() { value = dense<[0]> : tensor<1xi32>, device = "/job:localhost/replica:0/tas… 6 …%4 = "tf.Max"(%V__2, %dims4) { keep_dims = true, device = "/job:localhost/replica:0/task:0/device:… 7 …%dims5 = "tf.Const"() { value = dense<[2]> : tensor<1xi32>, device = "/job:localhost/replica:0/tas… 8 …%5 = "tf.Min"(%4, %dims5) { keep_dims = true, device = "/job:localhost/replica:0/task:0/device:CPU… 9 …%dims6 = "tf.Const"() { value = dense<[0, 3]> : tensor<2xi32>, device = "/job:localhost/replica:0/… 10 …%6 = "tf.Prod"(%5, %dims6) { keep_dims = true, device = "/job:localhost/replica:0/task:0/device:CP… 11 …%dims7 = "tf.Const"() { value = dense<[0, 1]> : tensor<2xi32>, device = "/job:localhost/replica:0/… [all …]
|
/aosp_15_r20/external/google-cloud-java/java-talent/proto-google-cloud-talent-v4/src/main/java/com/google/cloud/talent/v4/ |
H A D | JobOrBuilder.java | 17 // source: google/cloud/talent/v4/job.proto 23 // @@protoc_insertion_point(interface_extends:google.cloud.talent.v4.Job) 30 * Required during job update. 31 * The resource name for the job. This is generated by the service when a 32 * job is created. 36 * Use of this field in job queries and API calls is preferred over the use of 37 * [requisition_id][google.cloud.talent.v4.Job.requisition_id] since this 50 * Required during job update. 51 * The resource name for the job. This is generated by the service when a 52 * job is created. [all …]
|
H A D | Job.java | 17 // source: google/cloud/talent/v4/job.proto 25 * A Job resource represents a job posting (also referred to as a "job listing" 26 * or "job requisition"). A job belongs to a 28 * responsible for the job. 31 * Protobuf type {@code google.cloud.talent.v4.Job} 33 public final class Job extends com.google.protobuf.GeneratedMessageV3 class 35 // @@protoc_insertion_point(message_implements:google.cloud.talent.v4.Job) 38 // Use Job.newBuilder() to construct. 39 private Job(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Job() method in Job 43 private Job() { in Job() method in Job [all …]
|
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
D | jobs.v2.json | 31 "description": "Output only. Job entry with metadata inside SearchJobsResponse.", 37 …"description": "A summary of the job with core information that's displayed on the search results … 39 "job": { object 40 "$ref": "Job", 41 "description": "Job resource that matches the specified SearchJobsRequest." 49 …"description": "Contains snippets of text from the Job.description and similar fields that most cl… 52 …"description": "Contains snippets of text from the Job.job_title field most closely matching a sea… 128 …t to true, this call waits for all processing steps to complete before the job is cleaned up. Othe… 132 …ated. Use BatchDeleteJobsRequest instead. Input only. Delete job by filter request. The job typica… 140 …"description": "The start timestamp of the job in UTC time zone. Typically this field is used for … [all …]
|
D | jobs.v3.json | 9 "description": "Manage job postings" 18 …alent Solution provides the capability to create, read, update, and delete job postings, as well a… 20 "documentationLink": "https://cloud.google.com/talent-solution/job-search/docs/", 114 …letes the specified prefix with keyword suggestions. Intended for use by a job search auto-complet… 181 "Only suggest job titles.", 183 "Suggest both job titles and company names." 401 …"description": "Required. The resource name of the project under which the job is created. The for… 421 …"description": "Creates a new job. Typically, the job becomes searchable within 10 seconds, but it… 430 …"description": "Required. The resource name of the project under which the job is created. The for… 442 "$ref": "Job" [all …]
|
/aosp_15_r20/external/google-cloud-java/java-scheduler/grpc-google-cloud-scheduler-v1beta1/src/main/java/com/google/cloud/scheduler/v1beta1/ |
H A D | CloudSchedulerGrpc.java | 86 com.google.cloud.scheduler.v1beta1.GetJobRequest, com.google.cloud.scheduler.v1beta1.Job> 92 responseType = com.google.cloud.scheduler.v1beta1.Job.class, 95 com.google.cloud.scheduler.v1beta1.GetJobRequest, com.google.cloud.scheduler.v1beta1.Job> 99 com.google.cloud.scheduler.v1beta1.Job> in getGetJobMethod() 108 com.google.cloud.scheduler.v1beta1.Job> in getGetJobMethod() 119 com.google.cloud.scheduler.v1beta1.Job.getDefaultInstance())) in getGetJobMethod() 130 com.google.cloud.scheduler.v1beta1.Job> 136 responseType = com.google.cloud.scheduler.v1beta1.Job.class, 140 com.google.cloud.scheduler.v1beta1.Job> 144 com.google.cloud.scheduler.v1beta1.Job> in getCreateJobMethod() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-scheduler/grpc-google-cloud-scheduler-v1/src/main/java/com/google/cloud/scheduler/v1/ |
H A D | CloudSchedulerGrpc.java | 84 com.google.cloud.scheduler.v1.GetJobRequest, com.google.cloud.scheduler.v1.Job> 90 responseType = com.google.cloud.scheduler.v1.Job.class, 93 com.google.cloud.scheduler.v1.GetJobRequest, com.google.cloud.scheduler.v1.Job> 96 com.google.cloud.scheduler.v1.GetJobRequest, com.google.cloud.scheduler.v1.Job> in getGetJobMethod() 105 com.google.cloud.scheduler.v1.Job> in getGetJobMethod() 115 com.google.cloud.scheduler.v1.Job.getDefaultInstance())) in getGetJobMethod() 125 com.google.cloud.scheduler.v1.CreateJobRequest, com.google.cloud.scheduler.v1.Job> 131 responseType = com.google.cloud.scheduler.v1.Job.class, 134 com.google.cloud.scheduler.v1.CreateJobRequest, com.google.cloud.scheduler.v1.Job> 137 com.google.cloud.scheduler.v1.CreateJobRequest, com.google.cloud.scheduler.v1.Job> in getCreateJobMethod() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-scheduler/google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1/ |
H A D | CloudSchedulerClient.java | 56 * JobName name = JobName.of("[PROJECT]", "[LOCATION]", "[JOB]"); 57 * Job response = cloudSchedulerClient.getJob(name); 195 * for (Job element : cloudSchedulerClient.listJobs(parent).iterateAll()) { 225 * for (Job element : cloudSchedulerClient.listJobs(parent).iterateAll()) { 259 * for (Job element : cloudSchedulerClient.listJobs(request).iterateAll()) { 291 * ApiFuture<Job> future = cloudSchedulerClient.listJobsPagedCallable().futureCall(request); 293 * for (Job element : future.get().iterateAll()) { 324 * for (Job element : response.getJobsList()) { 343 * Gets a job. 354 * JobName name = JobName.of("[PROJECT]", "[LOCATION]", "[JOB]"); [all …]
|
/aosp_15_r20/external/google-cloud-java/java-scheduler/google-cloud-scheduler/src/main/java/com/google/cloud/scheduler/v1beta1/ |
H A D | CloudSchedulerClient.java | 57 * JobName name = JobName.of("[PROJECT]", "[LOCATION]", "[JOB]"); 58 * Job response = cloudSchedulerClient.getJob(name); 197 * for (Job element : cloudSchedulerClient.listJobs(parent).iterateAll()) { 227 * for (Job element : cloudSchedulerClient.listJobs(parent).iterateAll()) { 263 * for (Job element : cloudSchedulerClient.listJobs(request).iterateAll()) { 297 * ApiFuture<Job> future = cloudSchedulerClient.listJobsPagedCallable().futureCall(request); 299 * for (Job element : future.get().iterateAll()) { 332 * for (Job element : response.getJobsList()) { 351 * Gets a job. 362 * JobName name = JobName.of("[PROJECT]", "[LOCATION]", "[JOB]"); [all …]
|
/aosp_15_r20/external/cronet/net/http/ |
H A D | http_stream_factory_job_controller.h | 32 // HttpStreamFactory::JobController manages Request and Job(s). 34 : public HttpStreamFactory::Job::Delegate, 52 const Job* main_job() const { return main_job_.get(); } in main_job() 53 const Job* alternative_job() const { return alternative_job_.get(); } in alternative_job() 54 const Job* dns_alpn_h3_job() const { return dns_alpn_h3_job_.get(); } in dns_alpn_h3_job() 66 // Job(s) and start serving the created request. 81 // Called when Request is destructed. Job(s) associated with but not bound to 93 // From HttpStreamFactory::Job::Delegate. 94 // Invoked when |job| has an HttpStream ready. 95 void OnStreamReady(Job* job) override; [all …]
|