Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Wrap (0.32 sec)

  1. src/bufio/bufio_test.go

    	b := NewReaderSize(strings.NewReader("hello world"), BufSize)
    	// Does it recognize itself?
    	b1 := NewReaderSize(b, BufSize)
    	if b1 != b {
    		t.Error("NewReaderSize did not detect underlying Reader")
    	}
    	// Does it wrap if existing buffer is too small?
    	b2 := NewReaderSize(b, 2*BufSize)
    	if b2 == b {
    		t.Error("NewReaderSize did not enlarge buffer")
    	}
    }
    
    func TestNewWriterSizeIdempotent(t *testing.T) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IFT_AFLANE8025 = 60 #53466
    pkg syscall (freebsd-riscv64), const IFT_AFLANE8025 ideal-int #53466
    pkg syscall (freebsd-riscv64), const IFT_ARAP = 88 #53466
    pkg syscall (freebsd-riscv64), const IFT_ARAP ideal-int #53466
    pkg syscall (freebsd-riscv64), const IFT_ARCNET = 35 #53466
    pkg syscall (freebsd-riscv64), const IFT_ARCNET ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    the <a href="#Numeric_types">unsigned integer</a>'s type.
    Loosely speaking, these unsigned integer operations
    discard high bits upon overflow, and programs may rely on "wrap around".
    </p>
    <p>
    For signed integers, the operations <code>+</code>,
    <code>-</code>, <code>*</code>, <code>/</code>, and <code>&lt;&lt;</code> may legally
    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)
  4. misc/cgo/gmp/gmp.go

    */
    package gmp
    
    /*
    #cgo LDFLAGS: -lgmp
    #include <gmp.h>
    #include <stdlib.h>
    
    // gmp 5.0.0+ changed the type of the 3rd argument to mp_bitcnt_t,
    // so, to support older versions, we wrap these two functions.
    void _mpz_mul_2exp(mpz_ptr a, mpz_ptr b, unsigned long n) {
    	mpz_mul_2exp(a, b, n);
    }
    void _mpz_div_2exp(mpz_ptr a, mpz_ptr b, unsigned long n) {
    	mpz_div_2exp(a, b, n);
    }
    */
    import "C"
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8025 = 60
    pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8025 ideal-int
    pkg syscall (netbsd-arm64-cgo), const IFT_ARAP = 88
    pkg syscall (netbsd-arm64-cgo), const IFT_ARAP ideal-int
    pkg syscall (netbsd-arm64-cgo), const IFT_ARCNET = 35
    pkg syscall (netbsd-arm64-cgo), const IFT_ARCNET ideal-int
    pkg syscall (netbsd-arm64-cgo), const IFT_ARCNETPLUS = 36
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	// to _cgoCheckPointer, as done in checkIndex and checkAddr.
    	//
    	// When the function argument is a conversion to unsafe.Pointer,
    	// we unwrap the conversion before checking the pointer,
    	// and then wrap again when calling C.f. This lets us check
    	// the real type of the pointer in some cases. See issue #25941.
    	//
    	// When the call to C.f is deferred, we use an additional function
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IFT_AFLANE8025 = 60
    pkg syscall (freebsd-arm64), const IFT_AFLANE8025 ideal-int
    pkg syscall (freebsd-arm64), const IFT_ARAP = 88
    pkg syscall (freebsd-arm64), const IFT_ARAP ideal-int
    pkg syscall (freebsd-arm64), const IFT_ARCNET = 35
    pkg syscall (freebsd-arm64), const IFT_ARCNET ideal-int
    pkg syscall (freebsd-arm64), const IFT_ARCNETPLUS = 36
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (freebsd-386), const IFT_ADSL ideal-int
    pkg syscall (freebsd-386), const IFT_AFLANE8023 ideal-int
    pkg syscall (freebsd-386), const IFT_AFLANE8025 ideal-int
    pkg syscall (freebsd-386), const IFT_ARAP ideal-int
    pkg syscall (freebsd-386), const IFT_ARCNET ideal-int
    pkg syscall (freebsd-386), const IFT_ARCNETPLUS ideal-int
    pkg syscall (freebsd-386), const IFT_ASYNC 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)
  9. doc/go_spec.html

    computed modulo 2<sup><i>n</i></sup>, where <i>n</i> is the bit width of
    the unsigned integer's type.
    Loosely speaking, these unsigned integer operations
    discard high bits upon overflow, and programs may rely on "wrap around".
    </p>
    
    <p>
    For signed integers, the operations <code>+</code>,
    <code>-</code>, <code>*</code>, <code>/</code>, and <code>&lt;&lt;</code> may legally
    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)
  10. api/go1.1.txt

    pkg syscall (freebsd-386), const IFT_ADSL = 94
    pkg syscall (freebsd-386), const IFT_AFLANE8023 = 59
    pkg syscall (freebsd-386), const IFT_AFLANE8025 = 60
    pkg syscall (freebsd-386), const IFT_ARAP = 88
    pkg syscall (freebsd-386), const IFT_ARCNET = 35
    pkg syscall (freebsd-386), const IFT_ARCNETPLUS = 36
    pkg syscall (freebsd-386), const IFT_ASYNC = 84
    pkg syscall (freebsd-386), const IFT_ATM = 37
    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)
Back to top