Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initRuntime (0.09 sec)

  1. src/cmd/compile/internal/typecheck/syms.go

    	return LookupNum(prefix, int(n))
    }
    
    func Lookup(name string) *types.Sym {
    	return types.LocalPkg.Lookup(name)
    }
    
    // InitRuntime loads the definitions for the low-level runtime functions,
    // so that the compiler can generate calls to them,
    // but does not make them visible to user code.
    func InitRuntime() {
    	base.Timer.Start("fe", "loadsys")
    
    	typs := runtimeTypes()
    	for _, d := range &runtimeDecls {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/test/framework/suite.go

    	return 0
    }
    
    func (s *suiteImpl) run() (errLevel int) {
    	tc, shutdown, err := tracing.InitializeFullBinary(s.testID)
    	if err != nil {
    		return 99
    	}
    	defer shutdown()
    	if err := initRuntime(s); err != nil {
    		scopes.Framework.Errorf("Error during test framework init: %v", err)
    		return exitCodeInitError
    	}
    	rt.context.traceContext = tc
    
    	ctx := rt.suiteContext()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top