- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 156 for PARALLEL (0.06 sec)
-
impl/maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java
msgs.add("*****************************************************************"); msgs.add("* Your build is requesting parallel execution, but project *"); msgs.add("* contains the following plugin(s) that have goals not marked *"); msgs.add("* as @threadSafe to support parallel building. *"); msgs.add("* While this /may/ work fine, please look for plugin updates *");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java
* make it load its own version of FinalizableReferenceQueue. Then we need to interact with that * parallel version through reflection in order to exercise the parallel * FinalizableReferenceQueue, and then check that the parallel ClassLoader can be * garbage-collected after that. */ public static class MyFinalizableWeakReference extends FinalizableWeakReference<Object> {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 7.6K bytes - Viewed (0) -
docs/en/docs/async.md
### Parallel Burgers { #parallel-burgers } Now let's imagine these aren't "Concurrent Burgers", but "Parallel Burgers". You go with your crush to get parallel fast food. You stand in line while several (let's say 8) cashiers that at the same time are cooks take the orders from the people in front of you.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerTest.kt
log += "three:run@${taskFaker.nanoTime} parallel=${taskFaker.isParallel}" } taskFaker.advanceUntil(0.µs) assertThat(log).isEmpty() taskFaker.advanceUntil(100.µs) assertThat(log).containsExactlyInAnyOrder( "one:run@100000 parallel=true", "two:run@100000 parallel=true", "three:run@100000 parallel=true", ) taskFaker.assertNoMoreTasks()Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 23K bytes - Viewed (0) -
src/bytes/boundary_test.go
} return b[pagesize : 2*pagesize] } func TestEqualNearPageBoundary(t *testing.T) { t.Parallel() b := dangerousSlice(t) for i := range b { b[i] = 'A' } for i := 0; i <= len(b); i++ { Equal(b[:i], b[len(b)-i:]) Equal(b[len(b)-i:], b[:i]) } } func TestIndexByteNearPageBoundary(t *testing.T) { t.Parallel() b := dangerousSlice(t) for i := range b { idx := IndexByte(b[i:], 1) if idx != -1 {
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 30 20:05:58 UTC 2023 - 2.8K bytes - Viewed (0) -
.teamcity/performance-tests-ci.json
"groups" : [ { "testProject" : "excludeRuleMergingBuild", "coverage" : { "per_commit" : [ "linux" ] } } ] }, { "testId" : "org.gradle.performance.regression.corefeature.LargeDependencyGraphPerformanceTest.resolve large dependency graph (parallel = false, locking = true)", "groups" : [ {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Dec 25 10:54:09 UTC 2025 - 32.8K bytes - Viewed (0) -
docs/ru/docs/async.md
<img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration"> Наконец ваша очередь: вы заказываете 2 очень «навороченных» бургера — для вашей возлюбленной и для себя. Вы платите 💸. <img src="/img/async/parallel-burgers/parallel-burgers-02.png" class="illustration"> Кассир уходит на кухню.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:24:39 UTC 2025 - 38.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java
session.getProjects().size()); boolean parallel = nThreads > 1; // Propagate the parallel flag to the root session and all the cloned sessions in each project segment session.setParallel(parallel); for (ProjectSegment segment : projectBuilds) { segment.getSession().setParallel(parallel); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 16 03:42:09 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/pt/docs/async.md
<img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration"> Então é finalmente sua vez, você pede 2 hambúrgueres muito saborosos para você e seu _crush_. Você paga 💸. <img src="/img/async/parallel-burgers/parallel-burgers-02.png" class="illustration"> O caixa vai para a cozinha.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 25.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
} public Instant getStartInstant() { return request.getStartInstant(); } public boolean isParallel() { return parallel; } public void setParallel(boolean parallel) { this.parallel = parallel; } public RepositorySystemSession getRepositorySession() { return repositorySystemSession; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 16.7K bytes - Viewed (0)