Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for registerTest (0.81 sec)

  1. native-image-tests/src/main/kotlin/okhttp3/TestRegistration.kt

      }
    
      private fun registerParamProvider(
        access: Feature.BeforeAnalysisAccess,
        provider: String,
      ) {
        val providerClass = access.findClassByName(provider)
        if (providerClass != null) {
          registerTest(access, providerClass)
        } else {
          println("Missing $provider")
        }
      }
    
      private fun registerJupiterClasses(access: Feature.BeforeAnalysisAccess) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    		t.registerTest("API release note check", &goTest{variant: "check", pkg: "cmd/relnote", testFlags: []string{"-check"}})
    		t.registerTest("API check", &goTest{variant: "check", pkg: "cmd/api", timeout: 5 * time.Minute, testFlags: []string{"-check"}})
    	}
    
    	// Runtime CPU tests.
    	if !t.compileOnly && t.hasParallelism() {
    		for i := 1; i <= 4; i *= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                testing {
                    suites {
                        eagerTest(JvmTestSuite)
                        register("registerTest", JvmTestSuite)
                    }
                }
            """
    
            expect:
            succeeds("eagerTest")
            succeeds("registerTest")
        }
    
        def "built-in test suite does not have any testing framework set at the test suite level"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/register_test.go

    Sally O'Malley <******@****.***> 1633871847 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 16:55:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/register_test.go

    cyclinder <******@****.***> 1688653845 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 06:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme/register_test.go

    Tim Hockin <******@****.***> 1679596443 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
    // and uses that information to register all resulting test instances
    // in RegisterTests method. The ParameterizeTestCaseRegistry class holds
    // a collection of pointers to the ParameterizedTestCaseInfo objects
    // and calls RegisterTests() on each of them when asked.
    class ParameterizedTestCaseInfoBase {
     public:
      virtual ~ParameterizedTestCaseInfoBase() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
    // and uses that information to register all resulting test instances
    // in RegisterTests method. The ParameterizeTestCaseRegistry class holds
    // a collection of pointers to the ParameterizedTestCaseInfo objects
    // and calls RegisterTests() on each of them when asked.
    class ParameterizedTestCaseInfoBase {
     public:
      virtual ~ParameterizedTestCaseInfoBase() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationPlugin.groovy

    // tag::binary-registration[]
        @ComponentType
        void registerBinary(TypeBuilder<DocumentationBinary> builder) {}
    // end::binary-registration[]
    
    // tag::text-lang-registration[]
        @ComponentType
        void registerText(TypeBuilder<TextSourceSet> builder) {}
    // end::text-lang-registration[]
    
    // tag::binaries-generation[]
        @ComponentBinaries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    			return
    		}
    	}
    
    	// Special register list syntax for arm: [R1,R3-R7]
    	if tok.ScanToken == '[' {
    		if prefix != 0 {
    			p.errorf("illegal use of register list")
    		}
    		p.registerList(a)
    		p.expectOperandEnd()
    		return
    	}
    
    	// Register: R1
    	if tok.ScanToken == scanner.Ident && p.atStartOfRegister(name) {
    		if p.atRegisterShift() {
    			// ARM shifted register such as R1<<R2 or R1>>2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top