Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 389 for runTests (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/leak-detect_test.go

    			continue
    		}
    		stack := strings.TrimSpace(sl[1])
    		// ignore the testing go routine.
    		// since the tests will be invoking the leaktest it would contain the test go routine.
    		if strings.HasPrefix(stack, "testing.RunTests") {
    			continue
    		}
    		// Ignore the following go routines.
    		// testing and run time go routines should be ignored, only the application generated go routines should be taken into account.
    		if isIgnoredStackFn(stack) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/net/http/main_test.go

    			strings.Contains(stack, "testing.(*M).before.func1") ||
    			strings.Contains(stack, "os/signal.signal_recv") ||
    			strings.Contains(stack, "created by net.startServer") ||
    			strings.Contains(stack, "created by testing.RunTests") ||
    			strings.Contains(stack, "closeWriteAndWait") ||
    			strings.Contains(stack, "testing.Main(") ||
    			// These only show up with GOTRACEBACK=2; Issue 5005 (comment 28)
    			strings.Contains(stack, "runtime.goexit") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/go/doc/testdata/testing.go

    func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
    	flag.Parse()
    	parseCpuList()
    
    	before()
    	startAlarm()
    	testOk := RunTests(matchString, tests)
    	exampleOk := RunExamples(examples)
    	if !testOk || !exampleOk {
    		fmt.Println("FAIL")
    		os.Exit(1)
    	}
    	fmt.Println("PASS")
    	stopAlarm()
    	RunBenchmarks(matchString, benchmarks)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top