Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 389 for runTests (0.18 sec)

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

                    return operationParameters;
                }
    
                @Override
                public Void run(ConsumerConnection connection) {
                    connection.runTests(testExecutionRequest, getParameters());
                    return null;
                }
            }, new ResultHandlerAdapter(handler));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoaderTest.groovy

            return new TestMetaData('4.4')
        }
    }
    
    class TestR26Connection extends TestR22Connection implements InternalTestExecutionConnection {
        @Override
        BuildResult<?> runTests(InternalTestExecutionRequest testExecutionRequest, InternalCancellationToken cancellationToken, BuildParameters operationParameters) {
            throw new UnsupportedOperationException()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/runtime/debug/stack_test.go

    	runtime/debug.TestStack(0xc8201ce000)
    		/Users/r/go/src/runtime/debug/stack_test.go:37 +0x38
    	testing.tRunner(0xc8201ce000, 0x664b58)
    		/Users/r/go/src/testing/testing.go:456 +0x98
    	created by testing.RunTests
    		/Users/r/go/src/testing/testing.go:561 +0x86d
    */
    func TestStack(t *testing.T) {
    	b := T(0).method()
    	lines := strings.Split(string(b), "\n")
    	if len(lines) < 6 {
    		t.Fatal("too few lines")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tests/util/leak/check.go

    	sl := strings.SplitN(g, "\n", 2)
    	if len(sl) != 2 {
    		return nil, fmt.Errorf("error parsing stack: %q", g)
    	}
    	stack := strings.TrimSpace(sl[1])
    	if strings.HasPrefix(stack, "testing.RunTests") {
    		return nil, nil
    	}
    
    	for _, s := range goroutinesToIgnore {
    		if strings.Contains(stack, s) {
    			return nil, nil
    		}
    	}
    
    	// Parse the goroutine's ID from the header line.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 10:22:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/testing/testing.go

    		}
    	}
    }
    
    // RunTests is an internal function but exported because it is cross-package;
    // it is part of the implementation of the "go test" command.
    func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool) {
    	var deadline time.Time
    	if *timeout > 0 {
    		deadline = time.Now().Add(*timeout)
    	}
    	ran, ok := runTests(matchString, tests, deadline)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

                    providerParameters, params);
            } finally {
                failsafePhasedActionResultListener.rethrowErrors();
            }
        }
    
        public Object runTests(ProviderInternalTestExecutionRequest testExecutionRequest, BuildCancellationToken cancellationToken, ProviderOperationParameters providerParameters) {
            Parameters params = initParams(providerParameters);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    func (p patchMyCRDV1Beta1Schema) Description() string {
    	return p.description
    }
    
    type ratchetingTestCase struct {
    	Name       string
    	Disabled   bool
    	Operations []ratchetingTestOperation
    }
    
    func runTests(t *testing.T, cases []ratchetingTestCase) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.CRDValidationRatcheting, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionInfoProvider/FirIdeNormalAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotatedExpr.kt")
      public void testAnnotatedExpr() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.kt");
      }
    
      @Test
      @TestMetadata("annotatedExprAnnotation.kt")
      public void testAnnotatedExprAnnotation() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprAnnotation.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/expressionInfoProvider/FirStandaloneNormalAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotatedExpr.kt")
      public void testAnnotatedExpr() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.kt");
      }
    
      @Test
      @TestMetadata("annotatedExprAnnotation.kt")
      public void testAnnotatedExprAnnotation() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprAnnotation.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/expressionInfoProvider/Fe10IdeNormalAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotatedExpr.kt")
      public void testAnnotatedExpr() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.kt");
      }
    
      @Test
      @TestMetadata("annotatedExprAnnotation.kt")
      public void testAnnotatedExprAnnotation() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprAnnotation.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.4K bytes
    - Viewed (0)
Back to top