Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getSuiteThreadPoolSize (0.26 sec)

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

            replace(this.listeners, other.listeners);
            this.parallel = other.parallel;
            this.threadCount = other.threadCount;
            this.getSuiteThreadPoolSize().set(other.getSuiteThreadPoolSize());
            this.useDefaultListeners = other.useDefaultListeners;
            this.threadPoolFactoryClass = other.threadPoolFactoryClass;
            this.suiteName = other.suiteName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                setConfigFailurePolicy(prefix + "ConfigFailurePolicy")
                setListeners([prefix + "Listener"] as Set)
                setParallel(prefix + "Parallel")
                setThreadCount(intValue)
                getSuiteThreadPoolSize().set(intValue)
                setUseDefaultListeners(booleanValue)
                setThreadPoolFactoryClass(prefix + "ThreadPoolFactoryClass")
                setSuiteName(prefix + "SuiteName")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGSpec.java

        }
    
        public String getThreadPoolFactoryClass() {
            return threadPoolFactoryClass;
        }
    
        public int getThreadCount() {
            return threadCount;
        }
    
        public int getSuiteThreadPoolSize() {
            return suiteThreadPoolSize;
        }
    
        public String getParallel() {
            return parallel;
        }
    
        public String getDefaultTestName() {
            return defaultTestName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

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

            }
            if (spec.getThreadCount() > 0) {
                testNg.setThreadCount(spec.getThreadCount());
            }
            setSuiteThreadPoolSize(testNg, spec.getSuiteThreadPoolSize());
            setConfigFailurePolicy(testNg, spec.getConfigFailurePolicy());
            setPreserveOrder(testNg, spec.getPreserveOrder());
            setGroupByInstances(testNg, spec.getGroupByInstances());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top