Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for sendo (0.2 sec)

  1. doc/go1.17_spec.html

    begins. Communication blocks until the send can proceed.
    A send on an unbuffered channel can proceed if a receiver is ready.
    A send on a buffered channel can proceed if there is room in the buffer.
    A send on a closed channel proceeds by causing a <a href="#Run_time_panics">run-time panic</a>.
    A send on a <code>nil</code> channel blocks forever.
    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    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_SENDMSG_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_SENDTO = 133
    pkg syscall (darwin-arm64), const SYS_SENDTO ideal-int
    pkg syscall (darwin-arm64), const SYS_SENDTO_NOCANCEL = 413
    pkg syscall (darwin-arm64), const SYS_SENDTO_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_SETATTRLIST = 221
    pkg syscall (darwin-arm64), const SYS_SETATTRLIST 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)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_SENDMSG = 28
    pkg syscall (freebsd-arm64), const SYS_SENDMSG ideal-int
    pkg syscall (freebsd-arm64), const SYS_SENDTO = 133
    pkg syscall (freebsd-arm64), const SYS_SENDTO ideal-int
    pkg syscall (freebsd-arm64), const SYS_SETAUDIT = 450
    pkg syscall (freebsd-arm64), const SYS_SETAUDIT ideal-int
    pkg syscall (freebsd-arm64), const SYS_SETAUDIT_ADDR = 452
    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_SENDMSG = 28 #53466
    pkg syscall (freebsd-riscv64), const SYS_SENDMSG ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_SENDTO = 133 #53466
    pkg syscall (freebsd-riscv64), const SYS_SENDTO ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_SETAUDIT = 450 #53466
    pkg syscall (freebsd-riscv64), const SYS_SETAUDIT 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. doc/go_spec.html

    begins. Communication blocks until the send can proceed.
    A send on an unbuffered channel can proceed if a receiver is ready.
    A send on a buffered channel can proceed if there is room in the buffer.
    A send on a closed channel proceeds by causing a <a href="#Run_time_panics">run-time panic</a>.
    A send on a <code>nil</code> channel blocks forever.
    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    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)
  6. src/builtin/builtin.go

    // implied by the type argument.
    func clear[T ~[]Type | ~map[Type]Type1](t T)
    
    // The close built-in function closes a channel, which must be either
    // bidirectional or send-only. It should be executed only by the sender,
    // never the receiver, and has the effect of shutting down the channel after
    // the last sent value is received. After the last value has been received
    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)
  7. doc/go_mem.html

    <h3 id="chan">Channel communication</h3>
    
    <p>
    Channel communication is the main method of synchronization
    between goroutines.  Each send on a particular channel
    is matched to a corresponding receive from that channel,
    usually in a different goroutine.
    </p>
    
    <p class="rule">
    A send on a channel is synchronized before the completion of the
    corresponding receive from that channel.
    </p>
    
    <p>
    This program:
    </p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
Back to top