Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 727 for Parallel (0.29 sec)

  1. src/cmd/go/go_test.go

    func (tg *testgoData) check(err error) {
    	tg.t.Helper()
    	if err != nil {
    		tg.t.Error(err)
    	}
    }
    
    // parallel runs the test in parallel by calling t.Parallel.
    func (tg *testgoData) parallel() {
    	tg.t.Helper()
    	if tg.ran {
    		tg.t.Fatal("internal testsuite error: call to parallel after run")
    	}
    	for _, e := range tg.env {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. .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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. src/testing/sub_test.go

    				realTest.Error("sequential test was not run")
    			}
    		},
    	}, {
    		desc:   "failure in parallel test propagates upwards",
    		ok:     false,
    		maxPar: 1,
    		output: `
    --- FAIL: failure in parallel test propagates upwards (N.NNs)
        --- FAIL: failure in parallel test propagates upwards/#00 (N.NNs)
            --- FAIL: failure in parallel test propagates upwards/#00/par (N.NNs)
            `,
    		f: func(t *T) {
    			t.Run("", func(t *T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/concurrent/ParallelismConfiguration.java

    /**
     * A {@code ParallelismConfiguration} defines the parallel settings for a Gradle build.
     *
     * @since 4.1
     */
    public interface ParallelismConfiguration {
        /**
         * Returns true if parallel project execution is enabled.
         *
         * @see #getMaxWorkerCount()
         */
        boolean isParallelProjectExecutionEnabled();
    
        /**
         * Enables/disables parallel project execution.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r83/KotlinBuildScriptModelCrossVersionSpec.groovy

        def "single project with parallel build should not emit configuration resolution deprecation warning"() {
            given:
            propertiesFile << gradleProperties
    
            expect:
            loadValidatedToolingModel(KotlinDslScriptsModel)
        }
    
        @Issue("https://github.com/gradle/gradle/issues/25555")
        def "multi project with parallel build should not emit configuration resolution deprecation warning"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 14:23:15 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

                        }
                    }
                }
            """
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "tasks run in parallel when no max usages specified"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
                def service = gradle.sharedServices.registerIfAbsent("exclusive", BuildService) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        /**
         * The number of threads to use for this run. Ignored unless the parallel mode is also specified
         */
        @Internal
        public int getThreadCount() {
            return threadCount;
        }
    
        public void setThreadCount(int threadCount) {
            this.threadCount = threadCount;
        }
    
        /**
         * The number of XML suites will run parallel
         * @since 8.9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/testing/testing.go

    	return frame.Function
    }
    
    // Parallel signals that this test is to be run in parallel with (and only with)
    // other parallel tests. When a test is run multiple times due to use of
    // -test.count or -test.cpu, multiple instances of a single test never run in
    // parallel with each other.
    func (t *T) Parallel() {
    	if t.isParallel {
    		panic("testing: t.Parallel called multiple times")
    	}
    	if t.isEnvSet {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/java-android-application/gradle.properties

    org.gradle.jvmargs=-Xmx1536m
    # When configured, Gradle will run in incubating parallel mode.
    # This option should only be used with decoupled projects. More details, visit
    # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
    # org.gradle.parallel=true
    # AndroidX package structure to make it clearer which packages are bundled with the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/os/read_test.go

    		t.Fatalf("Stat %q (looking for size %d): %s", path, size, err)
    	}
    	if dir.Size() != size {
    		t.Errorf("Stat %q: size %d want %d", path, dir.Size(), size)
    	}
    }
    
    func TestReadFile(t *testing.T) {
    	t.Parallel()
    
    	filename := "rumpelstilzchen"
    	contents, err := ReadFile(filename)
    	if err == nil {
    		t.Fatalf("ReadFile %s: error expected, none found", filename)
    	}
    
    	filename = "read_test.go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 02:36:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top