Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,691 for spice (0.35 sec)

  1. src/encoding/csv/reader.go

    	LazyQuotes bool
    
    	// If TrimLeadingSpace is true, leading white space in a field is ignored.
    	// 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/internal/fuzz/mem.go

    	copy(v[:cap(v)], b)
    }
    
    // setValueLen sets the length of the shared memory buffer returned by valueRef
    // to n, which may be at most the cap of that slice.
    //
    // Note that we can only store the length in the shared memory header. The full
    // slice header contains a pointer, which is likely only valid for one process,
    // since each process can map shared memory at a different virtual address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. src/image/internal/imageutil/impl.go

    // successful. If it returns false, no dst pixels were changed.
    //
    // This function assumes that r is entirely within dst's bounds and the
    // translation of r from dst coordinate space to src coordinate space is
    // entirely within src's bounds.
    func DrawYCbCr(dst *image.RGBA, r image.Rectangle, src *image.YCbCr, sp image.Point) (ok bool) {
    	// This function exists in the image/internal/imageutil package because it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  4. src/net/ip.go

    // This library accepts either size of byte slice but always
    // returns 16-byte addresses.
    
    package net
    
    import (
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/stringslite"
    	"net/netip"
    )
    
    // IP address lengths (bytes).
    const (
    	IPv4len = 4
    	IPv6len = 16
    )
    
    // An IP is a single IP address, a slice of bytes.
    // Functions in this package accept either 4-byte (IPv4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/runtime/gcinfo_test.go

    	verifyGCInfo(t, "bss PtrScalar", &bssPtrScalar, infoPtrScalar)
    	verifyGCInfo(t, "bss BigStruct", &bssBigStruct, infoBigStruct())
    	verifyGCInfo(t, "bss string", &bssString, infoString)
    	verifyGCInfo(t, "bss slice", &bssSlice, infoSlice)
    	verifyGCInfo(t, "bss eface", &bssEface, infoEface)
    	verifyGCInfo(t, "bss iface", &bssIface, infoIface)
    
    	verifyGCInfo(t, "data Ptr", &dataPtr, infoPtr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:58:08 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/fmt/scan.go

    	UnreadRune() error
    	// SkipSpace skips space in the input. Newlines are treated appropriately
    	// for the operation being performed; see the package documentation
    	// for more information.
    	SkipSpace()
    	// Token skips space in the input if skipSpace is true, then returns the
    	// run of Unicode code points c satisfying f(c).  If f is nil,
    	// !unicode.IsSpace(c) is used; that is, the token will hold non-space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  7. src/compress/flate/dict_decoder.go

    func (dd *dictDecoder) availRead() int {
    	return dd.wrPos - dd.rdPos
    }
    
    // availWrite reports the available amount of output buffer space.
    func (dd *dictDecoder) availWrite() int {
    	return len(dd.hist) - dd.wrPos
    }
    
    // writeSlice returns a slice of the available buffer to write data to.
    //
    // This invariant will be kept: len(s) <= availWrite()
    func (dd *dictDecoder) writeSlice() []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. src/reflect/makefunc.go

    // does the following:
    //
    //   - converts its arguments to a slice of Values.
    //   - runs results := fn(args).
    //   - returns the results as a slice of Values, one per formal result.
    //
    // The implementation fn can assume that the argument [Value] slice
    // has the number and type of arguments given by typ.
    // If typ describes a variadic function, the final Value is itself
    // a slice representing the variadic arguments, as in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc.go

    // a particular region of the address space: the number of contiguous free pages
    // at the start and end of the region it represents, and the maximum number of
    // contiguous free pages found anywhere in that region.
    //
    // Each level of the radix tree is stored as one contiguous array, which represents
    // a different granularity of subdivision of the processes' address space. Thus, this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  10. src/runtime/arena_test.go

    	a := NewUserArena()
    
    	// A static string (not on heap or arena)
    	var s = "abcdefghij"
    
    	// Create a byte slice in the arena, initialize it with s
    	var b []byte
    	a.Slice(&b, len(s))
    	copy(b, s)
    
    	// Create a string as using the same memory as the byte slice, hence in
    	// the arena. This could be an arena API, but hasn't really been needed
    	// yet.
    	as := unsafe.String(&b[0], len(b))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top