Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Stuart (0.66 sec)

  1. src/encoding/csv/reader_test.go

    	FieldsPerRecord    int
    	LazyQuotes         bool
    	TrimLeadingSpace   bool
    	ReuseRecord        bool
    }
    
    // In these tests, the §, ¶ and ∑ characters in readTest.Input are used to denote
    // the start of a field, a record boundary and the position of an error respectively.
    // They are removed before parsing and are used to verify the position
    // information reported by FieldPos.
    
    var readTests = []readTest{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  2. src/archive/tar/reader_test.go

    		{data1[:2048] + data2[:1536], 3, io.EOF},
    		{data2[:511], 0, io.ErrUnexpectedEOF},
    		{data2[:512], 1, io.ErrUnexpectedEOF},
    		{data2[:1195], 1, io.ErrUnexpectedEOF},
    		{data2[:1196], 1, io.EOF}, // Exact end of data and start of padding
    		{data2[:1200], 1, io.EOF},
    		{data2[:1535], 1, io.EOF},
    		{data2[:1536], 1, io.EOF}, // Exact end of padding
    		{data2[:1536] + trash[:1], 1, io.ErrUnexpectedEOF},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
Back to top