Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for vers (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetVersion() (ver uint32, err error) {
    	r0, _, e1 := syscall.Syscall(procGetVersion.Addr(), 0, 0, 0, 0)
    	ver = uint32(r0)
    	if ver == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    }
    
    func fakeRequestInfo(resource, apiGroup string) *genericapirequest.RequestInfo {
    	return &genericapirequest.RequestInfo{
    		IsResourceRequest: true,
    		Path:              "/api/v1/test",
    		Verb:              "test",
    		APIPrefix:         "api",
    		APIGroup:          apiGroup,
    		APIVersion:        "v1",
    		Namespace:         "",
    		Resource:          resource,
    		Subresource:       "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		}
    
    		if cfg.Experiment.CoverageRedesign {
    			if len(infiles) != 0 {
    				// Coverage instrumentation creates new top level
    				// variables in the target package for things like
    				// meta-data containers, counter vars, etc. To avoid
    				// collisions with user variables, suffix the var name
    				// with 12 hex digits from the SHA-256 hash of the
    				// import path. Choice of 12 digits is historical/arbitrary,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    //    is a spare P, unpark a thread and handoff it the thread and the goroutine.
    //    This would lead to thread state thrashing, as the thread that readied the
    //    goroutine can be out of work the very next moment, we will need to park it.
    //    Also, it would destroy locality of computation as we want to preserve
    //    dependent goroutines on the same thread; and introduce additional latency.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top