Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,023 for Parallel (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    // function literal that calls t.Parallel.
    //
    // In practice, users rely on the fact that statements before the call to
    // t.Parallel are synchronous. For example by declaring test := test inside the
    // function literal, but before the call to t.Parallel.
    //
    // Therefore, we only flag references in statements that are obviously
    // dominated by a call to t.Parallel. As a simple heuristic, we only consider
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/testing/panic_test.go

    	"strings"
    	"testing"
    )
    
    var testPanicTest = flag.String("test_panic_test", "", "TestPanic: indicates which test should panic")
    var testPanicParallel = flag.Bool("test_panic_parallel", false, "TestPanic: run subtests in parallel")
    var testPanicCleanup = flag.Bool("test_panic_cleanup", false, "TestPanic: indicates whether test should call Cleanup")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:49:24 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelBuildOperationsIntegrationTest.groovy

            args("--max-workers=4", "--parallel")
            succeeds("dependsOnWorkTask", "slowTask")
    
            assert endTime(":workTask").isBefore(endTime(":slowTask"))
        }
    
        @Requires(
            value = IntegTestPreconditions.NotConfigCached,
            reason = """Assumptions about project locking do not hold.
    With CC enabled, the project is immutable so tasks run in parallel.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. src/runtime/crash_cgo_test.go

    	"internal/testenv"
    	"os"
    	"os/exec"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestCgoCrashHandler(t *testing.T) {
    	t.Parallel()
    	testCrashHandler(t, true)
    }
    
    func TestCgoSignalDeadlock(t *testing.T) {
    	// Don't call t.Parallel, since too much work going on at the
    	// same time can cause the testprogcgo code to overrun its
    	// timeouts (issue #18598).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/root-project/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                includeGroups == source.includeGroups
                excludeGroups == source.excludeGroups
                configFailurePolicy == source.configFailurePolicy
                listeners == source.listeners
                parallel == source.parallel
                threadCount == source.threadCount
                suiteThreadPoolSize.get() == source.suiteThreadPoolSize.get()
                useDefaultListeners == source.useDefaultListeners
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/pushqueue_test.go

    	}
    
    	t.Run("simple add and remove", func(t *testing.T) {
    		t.Parallel()
    		p := NewPushQueue()
    		defer p.ShutDown()
    		p.Enqueue(proxies[0], &model.PushRequest{})
    		p.Enqueue(proxies[1], &model.PushRequest{})
    
    		ExpectDequeue(t, p, proxies[0])
    		ExpectDequeue(t, p, proxies[1])
    	})
    
    	t.Run("remove too many", func(t *testing.T) {
    		t.Parallel()
    		p := NewPushQueue()
    		defer p.ShutDown()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    [[sec:parallel_execution]]
    == Parallel projects
    
    Gradle's parallel execution feature optimizes CPU utilization to accelerate builds by concurrently executing tasks from different projects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginAndroidSmokeTest.groovy

        VersionNumber kotlinPluginVersion
    
        def "kotlin android on android-kotlin-example using #dsl DSL (kotlin=#kotlinPluginVersion, agp=#androidPluginVersion, workers=#parallel)"(String kotlinPluginVersion, String androidPluginVersion, boolean parallel) {
            given:
            AndroidHome.assertIsSet()
            AGP_VERSIONS.assumeAgpSupportsCurrentJavaVersionAndKotlinVersion(androidPluginVersion, kotlinPluginVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/testing/helper_test.go

    	// We expect to see one "--- FAIL" line at the start
    	// of the log, five lines of "parallel" logging,
    	// and a final "FAIL" line at the end of the test.
    	const wantLines = 7
    
    	if len(lines) != wantLines {
    		t.Fatalf("parallelTestHelper gave %d lines of output; want %d", len(lines), wantLines)
    	}
    	want := "helperfuncs_test.go:24: parallel"
    	if got := strings.TrimSpace(lines[1]); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top