Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getThreadCount (0.2 sec)

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

        public boolean getUseDefaultListeners() {
            return useDefaultListener;
        }
    
        public String getThreadPoolFactoryClass() {
            return threadPoolFactoryClass;
        }
    
        public int getThreadCount() {
            return threadCount;
        }
    
        public int getSuiteThreadPoolSize() {
            return suiteThreadPoolSize;
        }
    
        public String getParallel() {
            return parallel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. 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)
  3. 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(),
                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)
  4. 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)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.
    //   GTEST_MUST_USE_RESULT_   - declares that a function's result must be used.
    //
    // Synchronization:
    //   Mutex, MutexLock, ThreadLocal, GetThreadCount()
    //                  - synchronization primitives.
    //   GTEST_IS_THREADSAFE - defined to 1 to indicate that the above
    //                         synchronization primitives have real implementations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.
    //   GTEST_MUST_USE_RESULT_   - declares that a function's result must be used.
    //
    // Synchronization:
    //   Mutex, MutexLock, ThreadLocal, GetThreadCount()
    //                  - synchronization primitives.
    //   GTEST_IS_THREADSAFE - defined to 1 to indicate that the above
    //                         synchronization primitives have real implementations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getTestName()> 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.getThreadCount()> 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)
Back to top