Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for suspend (0.18 sec)

  1. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_AIO_RETURN ideal-int
    pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND = 315
    pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND ideal-int
    pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND_NOCANCEL = 421
    pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_AIO_WRITE = 319
    pkg syscall (darwin-arm64), const SYS_AIO_WRITE ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  2. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_AIO_RETURN = 314
    pkg syscall (freebsd-arm64), const SYS_AIO_RETURN ideal-int
    pkg syscall (freebsd-arm64), const SYS_AIO_SUSPEND = 315
    pkg syscall (freebsd-arm64), const SYS_AIO_SUSPEND ideal-int
    pkg syscall (freebsd-arm64), const SYS_AIO_WAITCOMPLETE = 359
    pkg syscall (freebsd-arm64), const SYS_AIO_WAITCOMPLETE ideal-int
    pkg syscall (freebsd-arm64), const SYS_AIO_WRITE = 256
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  3. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_AIO_RETURN = 314 #53466
    pkg syscall (freebsd-riscv64), const SYS_AIO_RETURN ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_AIO_SUSPEND = 315 #53466
    pkg syscall (freebsd-riscv64), const SYS_AIO_SUSPEND ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_AIO_WAITCOMPLETE = 359 #53466
    pkg syscall (freebsd-riscv64), const SYS_AIO_WAITCOMPLETE ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  4. src/bytes/buffer.go

    	}
    	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)
    	} else {
    		// Add b.off to account for b.buf[:b.off] being sliced off the front.
    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)
Back to top