Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for shend (0.22 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 Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. 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 Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  3. 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)
  4. api/go1.1.txt

    pkg syscall (freebsd-386), const IPPROTO_SCCSP = 96
    pkg syscall (freebsd-386), const IPPROTO_SCTP = 132
    pkg syscall (freebsd-386), const IPPROTO_SDRP = 42
    pkg syscall (freebsd-386), const IPPROTO_SEND = 259
    pkg syscall (freebsd-386), const IPPROTO_SEND ideal-int
    pkg syscall (freebsd-386), const IPPROTO_SEP = 33
    pkg syscall (freebsd-386), const IPPROTO_SKIP = 57
    pkg syscall (freebsd-386), const IPPROTO_SPACER = 32767
    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)
  5. api/go1.2.txt

    pkg syscall (windows-386), const XP1_UNI_RECV = 65536
    pkg syscall (windows-386), const XP1_UNI_RECV ideal-int
    pkg syscall (windows-386), const XP1_UNI_SEND = 32768
    pkg syscall (windows-386), const XP1_UNI_SEND ideal-int
    pkg syscall (windows-386), func LoadSetFileCompletionNotificationModes() error
    pkg syscall (windows-386), func NetGetJoinInformation(*uint16, **uint16, *uint32) error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  6. 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)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const MSG_PEEK ideal-int
    pkg syscall (darwin-arm64), const MSG_RCVMORE = 16384
    pkg syscall (darwin-arm64), const MSG_RCVMORE ideal-int
    pkg syscall (darwin-arm64), const MSG_SEND = 4096
    pkg syscall (darwin-arm64), const MSG_SEND ideal-int
    pkg syscall (darwin-arm64), const MSG_TRUNC = 16
    pkg syscall (darwin-arm64), const MSG_TRUNC ideal-int
    pkg syscall (darwin-arm64), const MSG_WAITALL = 64
    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)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IPPROTO_SDRP = 42
    pkg syscall (freebsd-arm64), const IPPROTO_SDRP ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_SEND = 259
    pkg syscall (freebsd-arm64), const IPPROTO_SEND ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_SEP = 33
    pkg syscall (freebsd-arm64), const IPPROTO_SEP ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_SKIP = 57
    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)
  9. api/go1.txt

    pkg go/ast, const FilterUnassociatedComments MergeMode
    pkg go/ast, const Fun ObjKind
    pkg go/ast, const Lbl ObjKind
    pkg go/ast, const Pkg ObjKind
    pkg go/ast, const RECV ChanDir
    pkg go/ast, const SEND ChanDir
    pkg go/ast, const Typ ObjKind
    pkg go/ast, const Var ObjKind
    pkg go/ast, func FileExports(*File) bool
    pkg go/ast, func FilterDecl(Decl, Filter) bool
    pkg go/ast, func FilterFile(*File, Filter) bool
    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)
  10. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IPPROTO_SDRP = 42 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_SDRP ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_SEND = 259 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_SEND ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_SEP = 33 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_SEP 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)
Back to top