/external/libcups/conf/ |
D | cupsd.conf.in | 51 # Job/subscription privacy... 57 # Job-related operations must be done by the owner or an administrator... 58 <Limit Create-Job Print-Job Print-URI Validate-Job> 62 …Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscripti… 75 …t-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shut… 82 <Limit Cancel-Job CUPS-Authenticate-Job> 94 # Job/subscription privacy... 100 # Job-related operations must be done by the owner or an administrator... 101 <Limit Create-Job Print-Job Print-URI Validate-Job> 106 …Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscripti… [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/ |
D | Job.kt | 112 public interface Job : CoroutineContext.Element { interface 116 public companion object Key : CoroutineContext.Key<Job> { 226 public val children: Sequence<Job> in getCancellationException() 368 public operator fun plus(other: Job): Job = other in getCancellationException() 389 public fun Job(parent: Job? = null): CompletableJob = JobImpl(parent) in getCancellationException() method 395 public fun Job0(parent: Job? = null): Job = Job(parent) in getCancellationException() 429 public interface ChildJob : Job { 448 public interface ParentJob : Job { in parentCancelled() 492 internal fun Job.disposeOnCompletion(handle: DisposableHandle): DisposableHandle = in childCancelled() 509 public suspend fun Job.cancelAndJoin() { in childCancelled() [all …]
|
D | Supervisor.kt | 33 public fun SupervisorJob(parent: Job? = null) : CompletableJob = SupervisorJobImpl(parent) in <lambda>() 39 public fun SupervisorJob0(parent: Job? = null) : Job = SupervisorJob(parent) in <lambda>() 61 private class SupervisorJobImpl(parent: Job?) : JobImpl(parent) {
|
/external/llvm-project/compiler-rt/lib/fuzzer/ |
D | FuzzerFork.cpp | 134 auto Job = new FuzzJob; in CreateNewJob() local 145 Job->DftTimeInSeconds = duration_cast<seconds>(Time2 - Time1).count(); in CreateNewJob() 148 Job->SeedListPath = in CreateNewJob() 150 WriteToFile(Seeds, Job->SeedListPath); in CreateNewJob() 151 Cmd.addFlag("seed_inputs", "@" + Job->SeedListPath); in CreateNewJob() 153 Job->LogPath = DirPlusFile(TempDir, std::to_string(JobId) + ".log"); in CreateNewJob() 154 Job->CorpusDir = DirPlusFile(TempDir, "C" + std::to_string(JobId)); in CreateNewJob() 155 Job->FeaturesDir = DirPlusFile(TempDir, "F" + std::to_string(JobId)); in CreateNewJob() 156 Job->CFPath = DirPlusFile(TempDir, std::to_string(JobId) + ".merge"); in CreateNewJob() 157 Job->JobId = JobId; in CreateNewJob() [all …]
|
/external/rust/crates/libfuzzer-sys/libfuzzer/ |
D | FuzzerFork.cpp | 134 auto Job = new FuzzJob; in CreateNewJob() local 145 Job->DftTimeInSeconds = duration_cast<seconds>(Time2 - Time1).count(); in CreateNewJob() 148 Job->SeedListPath = in CreateNewJob() 150 WriteToFile(Seeds, Job->SeedListPath); in CreateNewJob() 151 Cmd.addFlag("seed_inputs", "@" + Job->SeedListPath); in CreateNewJob() 153 Job->LogPath = DirPlusFile(TempDir, std::to_string(JobId) + ".log"); in CreateNewJob() 154 Job->CorpusDir = DirPlusFile(TempDir, "C" + std::to_string(JobId)); in CreateNewJob() 155 Job->FeaturesDir = DirPlusFile(TempDir, "F" + std::to_string(JobId)); in CreateNewJob() 156 Job->CFPath = DirPlusFile(TempDir, std::to_string(JobId) + ".merge"); in CreateNewJob() 157 Job->JobId = JobId; in CreateNewJob() [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/ |
D | JobExceptionHandlingTest.kt | 24 val job = Job() in <lambda>() 40 val parent = Job() in <lambda>() 61 val parent = Job() in <lambda>() 85 val job = Job() in <lambda>() 109 val job = Job() in <lambda>() 145 val job = Job() in <lambda>() 173 val job = Job() in <lambda>() 209 val job = Job() in <lambda>() 251 val job = Job() in <lambda>() 281 val job = Job() in <lambda>() [all …]
|
/external/rust/cxx/tests/ui/ |
D | vec_opaque.rs | 4 type Job; typedef 11 type Job; typedef 15 fn f() -> Vec<Job>; in f() 22 type Job = crate::handle::Job; typedef 26 fn f() -> Vec<Job>; in f() 30 fn f() -> Vec<handle::Job> { in f()
|
D | vec_opaque.stderr | 4 15 | fn f() -> Vec<Job>; 7 error: needs a cxx::ExternType impl in order to be used as a vector element in Vec<Job> 10 11 | type Job; 13 error[E0271]: type mismatch resolving `<handle::Job as ExternType>::Kind == Trivial` 16 22 | type Job = crate::handle::Job;
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/ |
D | JobTest.kt | 14 val job = Job() in <lambda>() 22 val job = Job() in <lambda>() 39 val job = Job() in <lambda>() 57 val job = Job() in <lambda>() 81 val job = Job() in <lambda>() 96 val job = Job() in <lambda>() 114 val parent = Job() in <lambda>() 117 val child = Job(parent) in <lambda>() 123 val job = Job() in <lambda>() 133 val job = Job() in <lambda>() [all …]
|
D | WithContextTest.kt | 86 val job = Job() in <lambda>() 117 val job = Job() in <lambda>() 139 val job = Job() in <lambda>() 149 var job: Job? = null in <lambda>() 174 var job: Job? = null in <lambda>() 203 var job: Job? = null in <lambda>() 204 job = launch(Job()) { in <lambda>() 232 var job: Job? = null in <lambda>() 233 job = launch(Job()) { in <lambda>() 314 lateinit var ctxJob: Job in <lambda>() [all …]
|
D | ExperimentalDispatchModeTest.kt | 12 val parent = Job() in <lambda>() 26 val parent = Job() in <lambda>() 43 val parent = Job() in <lambda>() 60 val parent = Job() in <lambda>() 76 val parent = Job() in <lambda>() 92 val parent = Job() in <lambda>()
|
D | JobExtensionsTest.kt | 12 private val job = Job() in <lambda>() 21 coroutineContext[Job]!!.ensureActive() in <lambda>() 40 coroutineContext[Job]!!.ensureActive() in <lambda>() 60 coroutineContext[Job]!!.ensureActive() in <lambda>() 88 assertSame(coroutineContext[Job]!!, coroutineContext.job) in <lambda>()
|
D | CompletableJobTest.kt | 12 val job = Job() in <lambda>() 24 val job = Job() in <lambda>() 37 val parent = Job() in <lambda>() 38 val child = Job(parent) in <lambda>() 97 block(Job()) in <lambda>()
|
/external/autotest/frontend/afe/ |
D | shard_heartbeat_unittest.py | 34 assigned = models.Job.assign_to_shard(shard, []) 45 assigned = models.Job.assign_to_shard(shard, []) 54 assigned_jobs = models.Job.assign_to_shard(shard, [known_job.id]) 65 assigned = models.Job.assign_to_shard(shard, []) 75 assigned = models.Job.assign_to_shard(shard, []) 81 old = models.Job.SKIP_JOBS_CREATED_BEFORE 83 models.Job.SKIP_JOBS_CREATED_BEFORE = value 86 models.Job.SKIP_JOBS_CREATED_BEFORE = old 96 job = models.Job.objects.create( 115 job = models.Job.objects.create(
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/ |
D | SafeCollector.common.kt | 28 if (key !== Job) { in checkContext() 33 val collectJob = collectElement as Job? in checkContext() 34 val emissionParentJob = (element as Job).transitiveCoroutineParent(collectJob) in checkContext() 93 internal tailrec fun Job?.transitiveCoroutineParent(collectJob: Job?): Job? { in transitiveCoroutineParent()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/ |
D | ReusableCancellableContinuationTest.kt | 30 val job = coroutineContext[Job]!! in testContinuationsCount() 78 FieldWalker.assertReachableCount(1, coroutineContext[Job]) { it === continuation } in <lambda>() 82 coroutineContext[Job]!!.cancel() in <lambda>() 102 assertTrue { FieldWalker.walk(coroutineContext[Job]).contains(cont!!) } in <lambda>() 117 FieldWalker.assertReachableCount(0, coroutineContext[Job]) { it === cont } in <lambda>() 132 FieldWalker.assertReachableCount(0, coroutineContext[Job]) { it === cont } in testDetachedOnCancel() 139 val currentJob = coroutineContext[Job]!! 195 val job = coroutineContext[Job]!! in <lambda>() 216 FieldWalker.assertReachableCount(1, coroutineContext[Job]) { it is ChildContinuation } in <lambda>()
|
/external/tensorflow/tensorflow/core/data/service/ |
D | dispatcher_state.h | 125 struct Job { struct 126 explicit Job(int64 job_id, int64 dataset_id, ProcessingMode processing_mode, in Job() argument 152 explicit Task(int64 task_id, const std::shared_ptr<Job>& job, in Task() argument 161 const std::shared_ptr<Job> job; 186 std::vector<std::shared_ptr<const Job>> ListJobs(); 188 Status JobFromId(int64 id, std::shared_ptr<const Job>& job) const; 190 Status NamedJobByKey(NamedJobKey key, std::shared_ptr<const Job>& job) const; 195 std::shared_ptr<const Job>& job); 236 absl::flat_hash_map<int64, std::shared_ptr<Job>> jobs_; 239 absl::flat_hash_map<NamedJobKey, std::shared_ptr<Job>> named_jobs_; [all …]
|
D | dispatcher_impl.h | 154 Status RestoreSplitProvider(const DispatcherState::Job& job, 177 std::shared_ptr<const DispatcherState::Job>& job) 184 const std::shared_ptr<const DispatcherState::Job>& job, 190 std::shared_ptr<const DispatcherState::Job> job, 197 Status CreatePendingTask(std::shared_ptr<const DispatcherState::Job> job, 201 Status CreateTask(std::shared_ptr<const DispatcherState::Job> job, 214 Status ValidateMatchingJob(std::shared_ptr<const DispatcherState::Job> job,
|
/external/mksh/src/ |
D | jobs.c | 89 typedef struct job Job; typedef 92 Job *next; /* next job in list */ 129 static Job *job_list; /* job list */ 130 static Job *last_job; 131 static Job *async_job; 153 static void j_set_async(Job *); 154 static void j_startjob(Job *); 155 static int j_waitj(Job *, int, const char *); 157 static void j_print(Job *, int, struct shf *); 158 static Job *j_lookup(const char *, int *); [all …]
|
/external/pigweed/pw_trace/example/ |
D | sample_app.cc | 67 struct Job { struct in __anonecbbd0010111::ProcessingTask 73 Job job; 74 std::byte bytes[sizeof(Job)]; 95 Job& job = job_bytes.job; in Run() 118 Job jobs_buffer_[kMaxJobs]; 121 void ProcessingJob(const Job& job) { in ProcessingJob() 130 void SomeProcessing(const Job* job) { in SomeProcessing()
|
/external/libcups/examples/ |
D | ipp-2.2.test | 34 # Job template attributes 56 EXPECT operations-supported WITH-VALUE 0x0024 # Pause-Printer-After-Current-Job 62 EXPECT operations-supported WITH-VALUE 0x002C # Reprocess-Job 63 EXPECT operations-supported WITH-VALUE 0x002D # Cancel-Current-Job 64 EXPECT operations-supported WITH-VALUE 0x002E # Suspend-Current-Job 65 EXPECT operations-supported WITH-VALUE 0x002F # Resume-Job 66 EXPECT operations-supported WITH-VALUE 0x0030 # Promote-Job 67 EXPECT operations-supported WITH-VALUE 0x0031 # Schedule-Job-After 74 EXPECT operations-supported WITH-VALUE 0x003A # Resubmit-Job 75 EXPECT operations-supported WITH-VALUE 0x003B # Close-Job
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/operators/ |
D | FlowContextOptimizationsTest.kt | 27 assertEquals(collectContext.minusKey(Job), currentContext.minusKey(Job)) in <lambda>() 44 .flowOn(currentContext.minusKey(Job)) in <lambda>() 61 .flowOn(currentContext.minusKey(Job)) in <lambda>() 63 .flowOn(currentContext.minusKey(Job)) in <lambda>()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test-resources/stacktraces/channels/ |
D | testCancelledOffer.txt | 1 kotlinx.coroutines.JobCancellationException: Job was cancelled; job=JobImpl{Cancelling}@2a06d350 6 Caused by: kotlinx.coroutines.JobCancellationException: Job was cancelled; job=JobImpl{Cancelling}@… 8 at kotlinx.coroutines.Job$DefaultImpls.cancel$default(Job.kt:164)
|
/external/kotlinx.coroutines/ui/kotlinx-coroutines-swing/test/ |
D | SwingTest.kt | 40 fun testLaunch(): Job = launch { in <lambda>() 44 fun testFailure(): Job = launch { in <lambda>() 48 fun testCancellation() : Job = launch(start = CoroutineStart.ATOMIC) { in <lambda>() 61 component.coroutineContext[Job]!!.join() in <lambda>() 84 component.coroutineContext[Job]!!.join() in <lambda>()
|
/external/kotlinx.coroutines/integration/kotlinx-coroutines-jdk8/test/future/ |
D | AsFutureTest.kt | 30 val job = Job().apply { complete() } in <lambda>() 50 val job = Job() in testWaitForJobAsCompletableFuture() 75 val job = Job() in testJobAsCompletableFutureThrowable() 91 val job = Job() in testJobAsCompletableFutureCancellation() 106 val job = Job() in testJobCancellation()
|