Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getThreadCount (0.28 sec)

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

            testNg.setDefaultTestName(spec.getDefaultTestName());
            if (spec.getParallel() != null) {
                testNg.setParallel(spec.getParallel());
            }
            if (spec.getThreadCount() > 0) {
                testNg.setThreadCount(spec.getThreadCount());
            }
            setSuiteThreadPoolSize(testNg, spec.getSuiteThreadPoolSize());
            setConfigFailurePolicy(testNg, spec.getConfigFailurePolicy());
    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

            this.parallel = parallel;
        }
    
        /**
         * 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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top