Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EOF (0.11 sec)

  1. src/archive/tar/reader_test.go

    		{data2[:2048] + trash, 1, ErrHeader},
    		{data2[:2560], 1, io.EOF}, // Exactly 2 empty blocks (normal end-of-stream)
    		{data2[:2560] + trash[:1], 1, io.EOF},
    		{data2[:2560] + trash[:511], 1, io.EOF},
    		{data2[:2560] + trash, 1, io.EOF},
    		{data2[:3072], 1, io.EOF},
    		{pax, 0, io.EOF}, // PAX header without data is a "valid" tar file
    		{pax + trash[:1], 0, io.ErrUnexpectedEOF},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  2. src/bytes/reader_test.go

    	}
    
    	if n, err := (&Reader{}).Read(nil); n != 0 || err != io.EOF {
    		t.Errorf("Read: got %d, %v; want 0, io.EOF", n, err)
    	}
    
    	if n, err := (&Reader{}).ReadAt(nil, 11); n != 0 || err != io.EOF {
    		t.Errorf("ReadAt: got %d, %v; want 0, io.EOF", n, err)
    	}
    
    	if b, err := (&Reader{}).ReadByte(); b != 0 || err != io.EOF {
    		t.Errorf("ReadByte: got %d, %v; want 0, io.EOF", b, err)
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Dec 13 18:45:54 GMT 2021
    - 8K bytes
    - Viewed (0)
Back to top