Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for inspectors (0.12 sec)

  1. src/net/http/transfer.go

    func (br *byteReader) Read(p []byte) (n int, err error) {
    	if br.done {
    		return 0, io.EOF
    	}
    	if len(p) == 0 {
    		return 0, nil
    	}
    	br.done = true
    	p[0] = br.b
    	return 1, io.EOF
    }
    
    // transferWriter inspects the fields of a user-supplied Request or Response,
    // sanitizes them without changing the user object and provides methods for
    // writing the respective header, body and trailer in wire format.
    type transferWriter struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcs/vcs.go

    	check          func(match map[string]string) error // additional checks
    	schemelessRepo bool                                // if true, the repo pattern lacks a scheme
    }
    
    // FromDir inspects dir and its parents to determine the
    // version control system and code repository to use.
    // If no repository is found, FromDir returns an error
    // equivalent to os.ErrNotExist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top