Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ReuseRecord (0.28 sec)

  1. src/encoding/csv/reader_test.go

    	benchmarkRead(b, func(r *Reader) { r.ReuseRecord = true }, benchmarkCSVData)
    }
    
    func BenchmarkReadReuseRecordWithFieldsPerRecord(b *testing.B) {
    	benchmarkRead(b, func(r *Reader) { r.ReuseRecord = true; r.FieldsPerRecord = 4 }, benchmarkCSVData)
    }
    
    func BenchmarkReadReuseRecordWithoutFieldsPerRecord(b *testing.B) {
    	benchmarkRead(b, func(r *Reader) { r.ReuseRecord = true; r.FieldsPerRecord = -1 }, benchmarkCSVData)
    }
    
    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/encoding/csv/reader.go

    	// This is done even if the field delimiter, Comma, is white space.
    	TrimLeadingSpace bool
    
    	// ReuseRecord controls whether calls to Read may return a slice sharing
    	// the backing array of the previous call's returned slice for performance.
    	// By default, each call to Read returns newly allocated memory owned by the caller.
    	ReuseRecord bool
    
    	// Deprecated: TrailingComma is no longer used.
    	TrailingComma bool
    
    	r *bufio.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. internal/s3select/csv/reader.go

    		// non-doubled quote may appear in a quoted field.
    		ret.LazyQuotes = true
    		// We do not trim leading space to keep consistent with s3.
    		ret.TrimLeadingSpace = false
    		ret.ReuseRecord = true
    		return ret
    	}
    
    	return r, r.startReaders(newCsvReader)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. api/go1.9.txt

    pkg encoding/base32, const StdPadding = 61
    pkg encoding/base32, const StdPadding int32
    pkg encoding/base32, method (Encoding) WithPadding(int32) *Encoding
    pkg encoding/csv, type Reader struct, ReuseRecord bool
    pkg encoding/json, func Valid([]uint8) bool
    pkg go/ast, type TypeSpec struct, Assign token.Pos
    pkg go/types, func SizesFor(string, string) Sizes
    pkg go/types, method (*TypeName) IsAlias() bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Reader", Type, 0},
    		{"Reader.Comma", Field, 0},
    		{"Reader.Comment", Field, 0},
    		{"Reader.FieldsPerRecord", Field, 0},
    		{"Reader.LazyQuotes", Field, 0},
    		{"Reader.ReuseRecord", Field, 9},
    		{"Reader.TrailingComma", Field, 0},
    		{"Reader.TrimLeadingSpace", Field, 0},
    		{"Writer", Type, 0},
    		{"Writer.Comma", Field, 0},
    		{"Writer.UseCRLF", Field, 0},
    	},
    	"encoding/gob": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top