Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Glide (0.26 sec)

  1. doc/go1.17_spec.html

    <p>
    Within a composite literal of array, slice, or map type <code>T</code>,
    elements or map keys that are themselves composite literals may elide the respective
    literal type if it is identical to the element or key type of <code>T</code>.
    Similarly, elements or keys that are addresses of composite literals may elide
    the <code>&amp;T</code> when the element or key type is <code>*T</code>.
    </p>
    
    <pre>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <p>
    Within a composite literal of array, slice, or map type <code>T</code>,
    elements or map keys that are themselves composite literals may elide the respective
    literal type if it is identical to the element or key type of <code>T</code>.
    Similarly, elements or keys that are addresses of composite literals may elide
    the <code>&amp;T</code> when the element or key type is <code>*T</code>.
    </p>
    
    <pre>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg syscall (darwin-386), const SYS_SETWGROUPS = 289
    pkg syscall (darwin-386), const SYS_SETXATTR = 236
    pkg syscall (darwin-386), const SYS_SHARED_REGION_CHECK_NP = 294
    pkg syscall (darwin-386), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438
    pkg syscall (darwin-386), const SYS_SHMAT = 262
    pkg syscall (darwin-386), const SYS_SHMCTL = 263
    pkg syscall (darwin-386), const SYS_SHMDT = 264
    pkg syscall (darwin-386), const SYS_SHMGET = 265
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. src/bytes/buffer.go

    		return i
    	}
    	if b.buf == nil && n <= smallBufferSize {
    		b.buf = make([]byte, n, smallBufferSize)
    		return 0
    	}
    	c := cap(b.buf)
    	if n <= c/2-m {
    		// We can slide things down instead of allocating a new
    		// slice. We only need m+n <= c to slide, but
    		// we instead let capacity get twice as large so we
    		// don't spend all our time copying.
    		copy(b.buf, b.buf[b.off:])
    	} else if c > maxInt-c-n {
    		panic(ErrTooLarge)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP = 294
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP ideal-int
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int
    pkg syscall (darwin-arm64), const SYS_SHMAT = 262
    pkg syscall (darwin-arm64), const SYS_SHMAT ideal-int
    pkg syscall (darwin-arm64), const SYS_SHMCTL = 263
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (darwin-386), const SYS_SETXATTR ideal-int
    pkg syscall (darwin-386), const SYS_SHARED_REGION_CHECK_NP ideal-int
    pkg syscall (darwin-386), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int
    pkg syscall (darwin-386), const SYS_SHMAT ideal-int
    pkg syscall (darwin-386), const SYS_SHMCTL ideal-int
    pkg syscall (darwin-386), const SYS_SHMDT ideal-int
    pkg syscall (darwin-386), const SYS_SHMGET ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. src/bufio/bufio.go

    		lastByte:     -1,
    		lastRuneSize: -1,
    	}
    }
    
    var errNegativeRead = errors.New("bufio: reader returned negative count from Read")
    
    // fill reads a new chunk into the buffer.
    func (b *Reader) fill() {
    	// Slide existing data to beginning.
    	if b.r > 0 {
    		copy(b.buf, b.buf[b.r:b.w])
    		b.w -= b.r
    		b.r = 0
    	}
    
    	if b.w >= len(b.buf) {
    		panic("bufio: tried to fill full buffer")
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
Back to top