Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for registerTest (0.16 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. 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)
  4. 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)
  5. src/cmd/compile/internal/ssa/debug.go

    	Op:  OpInvalid,
    	Aux: StringToAux("BlockEnd"),
    }
    
    var FuncEnd = &Value{
    	ID:  -30000,
    	Op:  OpInvalid,
    	Aux: StringToAux("FuncEnd"),
    }
    
    // RegisterSet is a bitmap of registers, indexed by Register.num.
    type RegisterSet uint64
    
    // logf prints debug-specific logging to stdout (always stdout) if the
    // current function is tagged by GOSSAFUNC (for ssa output directed
    // either to stdout or html).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top