Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for iota (0.09 sec)

  1. src/os/exec/exec_test.go

    // package monkey-patches those variables before running tests).
    func TestMain(m *testing.M) {
    	flag.Parse()
    
    	pid := os.Getpid()
    	if os.Getenv("GO_EXEC_TEST_PID") == "" {
    		os.Setenv("GO_EXEC_TEST_PID", strconv.Itoa(pid))
    
    		if runtime.GOOS == "windows" {
    			// Normalize environment so that test behavior is consistent.
    			// (The behavior of LookPath varies depending on this variable.)
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    func BenchmarkServerHandlerTypeLen(b *testing.B) {
    	benchmarkHandler(b, HandlerFunc(func(w ResponseWriter, r *Request) {
    		w.Header().Set("Content-Type", "text/html")
    		w.Header().Set("Content-Length", strconv.Itoa(len(response)))
    		w.Write(response)
    	}))
    }
    
    // A Content-Type is set, but no length. No sniffing, but will count the Content-Length.
    func BenchmarkServerHandlerNoLen(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    func allowedVersion(v string) bool {
    	// Special case: no requirement.
    	if v == "" {
    		return true
    	}
    	return gover.Compare(gover.Local(), v) >= 0
    }
    
    const (
    	needBuild uint32 = 1 << iota
    	needCgoHdr
    	needVet
    	needCompiledGoFiles
    	needCovMetaFile
    	needStale
    )
    
    // build is the action for building a single package.
    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/os/user/cgo_lookup_unix.go

    	})
    	if err == syscall.ENOENT || (err == nil && !found) {
    		return nil, UnknownGroupIdError(strconv.Itoa(gid))
    	}
    	if err != nil {
    		return nil, fmt.Errorf("user: lookup groupid %d: %v", gid, err)
    	}
    	return buildGroup(&grp), nil
    }
    
    func buildGroup(grp *_C_struct_group) *Group {
    	g := &Group{
    		Gid:  strconv.Itoa(int(_C_gr_gid(grp))),
    		Name: _C_GoString(_C_gr_name(grp)),
    	}
    	return g
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top