Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 458 for Parallel (0.2 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceProjectLockTest.groovy

                started.await()
                instant.releaseAll
            }
    
            then:
            noExceptionThrown()
        }
    
        def "multiple threads can coordinate on locking of entire build when not in parallel"() {
            def projectLockService = workerLeaseService(false)
            def testLock = new ReentrantLock()
            def threadCount = 10
            def started = new CountDownLatch(threadCount)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

            runTasksOps.size() == 3
            runTasksOps[0].displayName == "Run tasks (:buildB:buildSrc)"
            runTasksOps[0].parentId == buildSrcOps[0].id
            // Build operations are run in parallel, so can appear in either order
            [runTasksOps[1].displayName, runTasksOps[2].displayName].sort()  == ["Run tasks", "Run tasks (:buildB)"]
            runTasksOps[1].parentId == runMainTasks.id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/runtime/crash_test.go

    	testenv.MustInternalLink(t, false)
    
    	t.Parallel()
    	output := runTestProg(t, "testprog", "RecoverBeforePanicAfterGoexit2")
    	want := "fatal error: no goroutines (main called runtime.Goexit) - deadlock!"
    	if !strings.HasPrefix(output, want) {
    		t.Fatalf("output does not start with %q:\n%s", want, output)
    	}
    }
    
    func TestNetpollDeadlock(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/ValueGraph.java

     *   <li>graphs whose edges have associated values
     * </ul>
     *
     * <p>{@code ValueGraph}, as a subtype of {@code Graph}, explicitly does not support parallel edges,
     * and forbids implementations or extensions with parallel edges. If you need parallel edges, use
     * {@link Network}. (You can use a positive {@code Integer} edge value as a loose representation of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/html/template/template.go

    // If an error occurs executing the template or writing its output,
    // execution stops, but partial results may already have been written to
    // the output writer.
    // A template may be executed safely in parallel, although if parallel
    // executions share a Writer the output may be interleaved.
    func (t *Template) Execute(wr io.Writer, data any) error {
    	if err := t.escape(); err != nil {
    		return err
    	}
    	return t.text.Execute(wr, data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            // Use max-workers=1 to force non-parallel execution and the tasks to run in the specified order
            // (--no-parallel doesn't have an effect with CC, but max-workers should affect both CC and parallel executors)
            args("--max-workers=1")
            return super.withBuildCache()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                return null
            }
            """
            org.gradle.jvmargs=-Xms${config.daemonMemory} -Xmx${config.daemonMemory} -Dfile.encoding=UTF-8
            org.gradle.parallel=${config.parallel}
            org.gradle.workers.max=${config.maxWorkers}
            compilerMemory=${config.compilerMemory}
            testRunnerMemory=${config.testRunnerMemory}
            testForkEvery=${config.testForkEvery}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Graph.java

     *   <li>graphs whose nodes/edges are insertion-ordered, sorted, or unordered
     * </ul>
     *
     * <p>{@code Graph} explicitly does not support parallel edges, and forbids implementations or
     * extensions with parallel edges. If you need parallel edges, use {@link Network}.
     *
     * <h3>Building a {@code Graph}</h3>
     *
     * <p>The implementation classes that {@code common.graph} provides are not public, by design. To
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/Graph.java

     *   <li>graphs whose nodes/edges are insertion-ordered, sorted, or unordered
     * </ul>
     *
     * <p>{@code Graph} explicitly does not support parallel edges, and forbids implementations or
     * extensions with parallel edges. If you need parallel edges, use {@link Network}.
     *
     * <h3>Building a {@code Graph}</h3>
     *
     * <p>The implementation classes that {@code common.graph} provides are not public, by design. To
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            group = ciGroup
        }
    
        register("parallelTest") {
            description = "Run all integration tests in parallel execution mode: each Gradle execution started in a test run with --parallel"
            group = ciGroup
        }
    
        register("noDaemonTest") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top