Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 7651 (0.15 sec)

  1. src/bufio/bufio_test.go

    	n int
    }
    
    func (r *emptyThenNonEmptyReader) Read(p []byte) (int, error) {
    	if r.n <= 0 {
    		return r.r.Read(p)
    	}
    	r.n--
    	return 0, nil
    }
    
    // Test for golang.org/issue/7611
    func TestWriterReadFromUntilEOF(t *testing.T) {
    	buf := new(bytes.Buffer)
    	w := NewWriterSize(buf, 5)
    
    	// Partially fill buffer
    	n, err := w.Write([]byte("0123"))
    	if n != 4 || err != nil {
    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)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	//TODO: JB .+$0x11                      // 7211
    	//TODO: JBE .+$0x11223344               // 0f8644332211 or 480f8644332211
    	//TODO: JBE .+$0x11                     // 7611
    	//TODO: JE .+$0x11223344                // 480f8444332211 or 0f8444332211
    	//TODO: JE .+$0x11                      // 7411
    	//TODO: JECXZ .+$0x11                   // e311
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
Back to top