Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Godoc (0.27 sec)

  1. src/bufio/bufio_test.go

    	r.buf = r.buf[read:]
    
    	switch read {
    	case 0, len(r.buf):
    		// As allowed in the documentation, this will return io.EOF
    		// in the same call that consumes the last of the data.
    		// https://godoc.org/io#Reader
    		return read, io.EOF
    	}
    
    	return read, nil
    }
    
    func TestPartialReadEOF(t *testing.T) {
    	src := make([]byte, 10)
    	eofR := &eofReader{buf: src}
    	r := NewReader(eofR)
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
Back to top