Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for unwrap (0.28 sec)

  1. api/go1.13.txt

    pkg net, method (*DNSConfigError) Unwrap() error
    pkg net, method (*OpError) Unwrap() error
    pkg net, type DNSError struct, IsNotFound bool
    pkg net, type ListenConfig struct, KeepAlive time.Duration
    pkg net/url, method (*Error) Unwrap() error
    pkg os/exec, method (*Cmd) String() string
    pkg os/exec, method (*Error) Unwrap() error
    pkg os, func UserConfigDir() (string, error)
    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)
  2. 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)
  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. api/next/63116.txt

    pkg net, type DNSError struct, UnwrapErr error #63116
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Apr 14 18:23:45 GMT 2024
    - 104 bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/testing/fstest/63675.md

    [TestFS] now returns a structured error that can be unwrapped
    (via method `Unwrap() []error`). This allows inspecting errors
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 159 bytes
    - Viewed (0)
  6. api/go1.18.txt

    pkg go/types, func NewTypeParam(*TypeName, Type) *TypeParam
    pkg go/types, func NewUnion([]*Term) *Union
    pkg go/types, method (*ArgumentError) Error() string
    pkg go/types, method (*ArgumentError) Unwrap() error
    pkg go/types, method (*Interface) IsComparable() bool
    pkg go/types, method (*Interface) IsImplicit() bool
    pkg go/types, method (*Interface) IsMethodSet() bool
    pkg go/types, method (*Interface) MarkImplicit()
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. api/go1.16.txt

    pkg syscall (linux-arm-cgo), func Setegid(int) error
    pkg syscall (linux-arm-cgo), func Seteuid(int) error
    pkg syscall (windows-386), method (*DLLError) Unwrap() error
    pkg syscall (windows-386), type SysProcAttr struct, NoInheritHandles bool
    pkg syscall (windows-amd64), method (*DLLError) Unwrap() error
    pkg syscall (windows-amd64), type SysProcAttr struct, NoInheritHandles bool
    pkg testing/fstest, func TestFS(fs.FS, ...string) error
    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)
  10. api/go1.20.txt

    pkg crypto/subtle, func XORBytes([]uint8, []uint8, []uint8) int #53021
    pkg crypto/tls, method (*CertificateVerificationError) Error() string #48152
    pkg crypto/tls, method (*CertificateVerificationError) Unwrap() error #48152
    pkg crypto/tls, type CertificateVerificationError struct #48152
    pkg crypto/tls, type CertificateVerificationError struct, Err error #48152
    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)
Back to top