Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for Look (0.14 sec)

  1. src/bufio/bufio.go

    // to minimize allocations and copies.
    func (b *Reader) collectFragments(delim byte) (fullBuffers [][]byte, finalFragment []byte, totalLen int, err error) {
    	var frag []byte
    	// Use ReadSlice to look for delim, accumulating full buffers.
    	for {
    		var e error
    		frag, e = b.ReadSlice(delim)
    		if e == nil { // got final fragment
    			break
    		}
    		if e != ErrBufferFull { // unexpected error
    			err = e
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  2. api/go1.4.txt

    # CL 76540043 net/http: add BasicAuth method to *http.Request, Kelsey Hightower <******@****.***>
    pkg net/http, method (*Request) BasicAuth() (string, string, bool)
    
    # CL 137940043 net/http: add Transport.DialTLS hook, Brad Fitzpatrick <******@****.***>
    pkg net/http, type Transport struct, DialTLS func(string, string) (net.Conn, error)
    
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
Back to top