Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getParallel (0.96 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

        }
    
        private TestNGSpec toSpec(TestNGOptions options, DefaultTestFilter filter) {
            return new TestNGSpec(filter.toSpec(),
                options.getSuiteName(), options.getTestName(), options.getParallel(), options.getThreadCount(), options.getSuiteThreadPoolSize().get(),
                options.getUseDefaultListeners(), options.getThreadPoolFactoryClass(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         *
         * Not required.
         *
         * If not present, parallel mode will not be selected
         */
        @Nullable
        @Internal
        public String getParallel() {
            return parallel;
        }
    
        public void setParallel(String parallel) {
            this.parallel = parallel;
        }
    
        /**
         * The number of threads to use for this run. Ignored unless the parallel mode is also specified
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                setExcludeGroups([prefix + "ExcludedGroup"] as Set)
                setConfigFailurePolicy(prefix + "ConfigFailurePolicy")
                setListeners([prefix + "Listener"] as Set)
                setParallel(prefix + "Parallel")
                setThreadCount(intValue)
                getSuiteThreadPoolSize().set(intValue)
                setUseDefaultListeners(booleanValue)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getOutputDirectory()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestNGOptions.java:0)
    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getParallel()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestNGOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	{"CONNECT", "google.com", "/dir/..", 200, "/dir/"},
    	{"CONNECT", "google.com", "/dir/..", 200, "/dir/"},
    	{"CONNECT", "google.com", "/dir/./file", 200, "/dir/"},
    }
    
    func TestServeMuxHandler(t *testing.T) {
    	setParallel(t)
    	mux := NewServeMux()
    	for _, e := range serveMuxRegister {
    		mux.Handle(e.pattern, e.h)
    	}
    
    	for _, tt := range serveMuxTests {
    		r := &Request{
    			Method: tt.method,
    			Host:   tt.host,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top