Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 407 for runTests (0.27 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ConsumerConnection.java

        void run(PhasedBuildAction phasedBuildAction, ConsumerOperationParameters operationParameters)
            throws UnsupportedOperationException, IllegalStateException;
    
        void runTests(TestExecutionRequest testExecutionRequest, ConsumerOperationParameters operationParameters);
    
        void notifyDaemonsAboutChangedPaths(List<String> changedPaths, ConsumerOperationParameters operationParameters);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/UnsupportedOlderVersionConnection.java

        }
    
        @Override
        public void run(PhasedBuildAction phasedBuildAction, ConsumerOperationParameters operationParameters) {
            throw unsupported();
        }
    
        @Override
        public void runTests(TestExecutionRequest testExecutionRequest, ConsumerOperationParameters operationParameters) {
            throw unsupported();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/go/doc/testdata/testing.0.golden

    	func RunBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark)
    
    	// 
    	func RunExamples(examples []InternalExample) (ok bool)
    
    	// 
    	func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool)
    
    	// Short reports whether the -test.short flag is set. 
    	func Short() bool
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/AbstractConsumerConnection.java

            throw Exceptions.unsupportedFeature(operationParameters.getEntryPointName(), getVersionDetails().getVersion(), "4.8");
        }
    
        @Override
        public void runTests(final TestExecutionRequest testExecutionRequest, ConsumerOperationParameters operationParameters) {
            throw Exceptions.unsupportedFeature(operationParameters.getEntryPointName(), getVersionDetails().getVersion(), "2.6");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/NoToolingApiConnection.java

            throw Exceptions.unsupportedFeature(operationParameters.getEntryPointName(), distribution, "4.8");
        }
    
        @Override
        public void runTests(TestExecutionRequest testExecutionRequest, ConsumerOperationParameters operationParameters) {
            throw Exceptions.unsupportedFeature(operationParameters.getEntryPointName(), distribution, "2.6");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            return new ProviderBuildResult<>(results);
        }
    
        /**
         * This is used by consumers 2.6-rc-1 and later
         */
        @Override
        public BuildResult<?> runTests(InternalTestExecutionRequest testExecutionRequest, InternalCancellationToken cancellationToken, BuildParameters operationParameters)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

        @Override
        public void stop() {
            try {
                runTests();
            } finally {
                resultProcessorActor.stop();
            }
        }
    
        @Override
        public void stopNow() {
            throw new UnsupportedOperationException("stopNow() should not be invoked on remote worker TestClassProcessor");
        }
    
        private void runTests() {
            TestNG testNg = new TestNG();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. hack/make-rules/test.sh

        go -C "${KUBE_ROOT}/cmd/prune-junit-xml" install .
      fi
      prune-junit-xml "${junit_xml_filename}"
    
      kube::log::status "Saved JUnit XML test report to ${junit_xml_filename}"
    }
    
    runTests() {
      local junit_filename_prefix
      junit_filename_prefix=$(junitFilenamePrefix)
    
      # Try to normalize input names.
      local -a targets
      kube::util::read-array targets < <(kube::golang::normalize_go_targets "$@")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	}
    	if opts.bench {
    		// Run no tests.
    		run = append(run, "-run=^$")
    		// Run benchmarks briefly as a smoke test.
    		run = append(run, "-bench=.*", "-benchtime=.1s")
    	} else if opts.runTests != "" {
    		run = append(run, "-run="+opts.runTests)
    	}
    	if opts.cpu != "" {
    		run = append(run, "-cpu="+opts.cpu)
    	}
    	if t.json {
    		run = append(run, "-json")
    	}
    
    	if opts.gcflags != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/go/doc/testdata/testing.2.golden

    	func RunBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark)
    
    	// 
    	func RunExamples(examples []InternalExample) (ok bool)
    
    	// 
    	func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool)
    
    	// Short reports whether the -test.short flag is set. 
    	func Short() bool
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
Back to top