Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for queue (0.35 sec)

  1. doc/go1.17_spec.html

    <a href="#Length_and_capacity"><code>cap</code></a> and
    <a href="#Length_and_capacity"><code>len</code></a>
    by any number of goroutines without further synchronization.
    Channels act as first-in-first-out queues.
    For example, if one goroutine sends values on a channel
    and a second goroutine receives them, the values are
    received in the order sent.
    </p>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_KEVENT64 ideal-int
    pkg syscall (darwin-arm64), const SYS_KILL = 37
    pkg syscall (darwin-arm64), const SYS_KILL ideal-int
    pkg syscall (darwin-arm64), const SYS_KQUEUE = 362
    pkg syscall (darwin-arm64), const SYS_KQUEUE ideal-int
    pkg syscall (darwin-arm64), const SYS_LCHOWN = 364
    pkg syscall (darwin-arm64), const SYS_LCHOWN ideal-int
    pkg syscall (darwin-arm64), const SYS_LEDGER = 373
    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)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_KMQ_UNLINK = 462
    pkg syscall (freebsd-arm64), const SYS_KMQ_UNLINK ideal-int
    pkg syscall (freebsd-arm64), const SYS_KQUEUE = 362
    pkg syscall (freebsd-arm64), const SYS_KQUEUE ideal-int
    pkg syscall (freebsd-arm64), const SYS_KSEM_CLOSE = 400
    pkg syscall (freebsd-arm64), const SYS_KSEM_CLOSE ideal-int
    pkg syscall (freebsd-arm64), const SYS_KSEM_DESTROY = 408
    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)
  4. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_KMQ_UNLINK = 462 #53466
    pkg syscall (freebsd-riscv64), const SYS_KMQ_UNLINK ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_KQUEUE = 362 #53466
    pkg syscall (freebsd-riscv64), const SYS_KQUEUE ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_CLOSE = 400 #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_CLOSE 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)
  5. src/builtin/builtin.go

    //	Pointer to array: the number of elements in *v (even if v is nil).
    //	Slice, or map: the number of elements in v; if v is nil, len(v) is zero.
    //	String: the number of bytes in v.
    //	Channel: the number of elements queued (unread) in the channel buffer;
    //	         if v is nil, len(v) is zero.
    //
    // For some arguments, such as a string literal or a simple array expression, the
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (linux-386), const IFF_NOARP = 128
    pkg syscall (linux-386), const IFF_NOTRAILERS = 32
    pkg syscall (linux-386), const IFF_NO_PI = 4096
    pkg syscall (linux-386), const IFF_ONE_QUEUE = 8192
    pkg syscall (linux-386), const IFF_POINTOPOINT = 16
    pkg syscall (linux-386), const IFF_PORTSEL = 8192
    pkg syscall (linux-386), const IFF_PROMISC = 256
    pkg syscall (linux-386), const IFF_RUNNING = 64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (1)
  7. doc/go_spec.html

    <a href="#Length_and_capacity"><code>cap</code></a> and
    <a href="#Length_and_capacity"><code>len</code></a>
    by any number of goroutines without further synchronization.
    Channels act as first-in-first-out queues.
    For example, if one goroutine sends values on a channel
    and a second goroutine receives them, the values are
    received in the order sent.
    </p>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top