Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for iota (0.26 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	if s.softFloat {
    		if c, ok := s.sfcall(op, arg0, arg1); ok {
    			return c
    		}
    	}
    	return s.newValue2(op, t, arg0, arg1)
    }
    
    type instrumentKind uint8
    
    const (
    	instrumentRead = iota
    	instrumentWrite
    	instrumentMove
    )
    
    func (s *state) instrument(t *types.Type, addr *ssa.Value, kind instrumentKind) {
    	s.instrument2(t, addr, nil, kind)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/net/http/server.go

    const (
    	// StateNew represents a new connection that is expected to
    	// send a request immediately. Connections begin at this
    	// state and then transition to either StateActive or
    	// StateClosed.
    	StateNew ConnState = iota
    
    	// StateActive represents a connection that has read 1 or more
    	// bytes of a request. The Server.ConnState hook for
    	// StateActive fires before the request has entered a handler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/os/exec_plan9.go

    	if e != nil {
    		return nil, &PathError{Op: "fork/exec", Path: name, Err: e}
    	}
    
    	return newPIDProcess(pid), nil
    }
    
    func (p *Process) writeProcFile(file string, data string) error {
    	f, e := OpenFile("/proc/"+itoa.Itoa(p.Pid)+"/"+file, O_WRONLY, 0)
    	if e != nil {
    		return e
    	}
    	defer f.Close()
    	_, e = f.Write([]byte(data))
    	return e
    }
    
    func (p *Process) signal(sig Signal) error {
    	switch p.pidStatus() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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