Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            testNg.setDefaultSuiteName(spec.getDefaultSuiteName());
            testNg.setDefaultTestName(spec.getDefaultTestName());
            if (spec.getParallel() != null) {
                testNg.setParallel(spec.getParallel());
            }
            if (spec.getThreadCount() > 0) {
                testNg.setThreadCount(spec.getThreadCount());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K 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. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        doLast {
            def projectDirectory = generatedDir.get().asFile
            setMaxWorkers(projectDirectory, 6)
            setMaxHeap(projectDirectory, "1G")
            setParallel(projectDirectory, true)
        }
    }
    
    performanceTest.registerTestProject("bigSwiftApp", BuildBuilderGenerator) {
        projectType = "swift"
        projects = 1
        sourceFiles = 500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            }
        }
    
        public Date getStartTime() {
            return request.getStartTime();
        }
    
        public boolean isParallel() {
            return parallel;
        }
    
        public void setParallel(boolean parallel) {
            this.parallel = parallel;
        }
    
        public RepositorySystemSession getRepositorySession() {
            return repositorySystemSession;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/net/http/clientserver_test.go

    		default:
    			t.Fatalf("unknown option type %T", opt)
    		}
    	}
    	if t, ok := any(t).(*testing.T); ok && parallel {
    		setParallel(t)
    	}
    	for _, mode := range modes {
    		t.Run(string(mode), func(t T) {
    			t.Helper()
    			if t, ok := any(t).(*testing.T); ok && parallel {
    				setParallel(t)
    			}
    			t.Cleanup(func() {
    				afterTest(t)
    			})
    			f(t, mode)
    		})
    	}
    }
    
    type clientServerTest struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
Back to top