Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. doc/go1.17_spec.html

    records that no more values will be sent on the channel.
    It is an error if <code>c</code> is a receive-only channel.
    Sending to or closing a closed channel causes a <a href="#Run_time_panics">run-time panic</a>.
    Closing the nil channel also causes a <a href="#Run_time_panics">run-time panic</a>.
    After calling <code>close</code>, and after any previously
    sent values have been received, receive operations will return
    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. src/cmd/cgo/doc.go

    and used to compile Fortran files in that package. All the LDFLAGS directives
    in any package in the program are concatenated and used at link time. All the
    pkg-config directives are concatenated and sent to pkg-config simultaneously
    to add to each appropriate set of command-line flags.
    
    When the cgo directives are parsed, any occurrence of the string ${SRCDIR}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/1-time.md

    now unbuffered, with capacity 0.
    The main effect of this change is that Go now guarantees
    that for any call to a `Reset` or `Stop` method, no stale values
    prepared before that call will be sent or received after the call.
    Earlier versions of Go used channels with a one-element buffer,
    making it difficult to use `Reset` and `Stop` correctly.
    A visible effect of this change is that `len` and `cap` of timer channels
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/builtin/builtin.go

    // 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
    // from a closed channel c, any receive from c will succeed without
    // blocking, returning the zero value for the channel element. The form
    //
    //	x, ok := <-c
    //
    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)
  5. doc/go_spec.html

    records that no more values will be sent on the channel.
    It is an error if <code>ch</code> is a receive-only channel.
    Sending to or closing a closed channel causes a <a href="#Run_time_panics">run-time panic</a>.
    Closing the nil channel also causes a <a href="#Run_time_panics">run-time panic</a>.
    After calling <code>close</code>, and after any previously
    sent values have been received, receive operations will return
    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)
  6. api/go1.1.txt

    pkg syscall (linux-386), type TCPInfo struct, Last_ack_recv uint32
    pkg syscall (linux-386), type TCPInfo struct, Last_ack_sent uint32
    pkg syscall (linux-386), type TCPInfo struct, Last_data_recv uint32
    pkg syscall (linux-386), type TCPInfo struct, Last_data_sent uint32
    pkg syscall (linux-386), type TCPInfo struct, Lost uint32
    pkg syscall (linux-386), type TCPInfo struct, Options uint8
    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)
  7. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_ack_recv uint32
    pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_ack_sent uint32
    pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_data_recv uint32
    pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_data_sent uint32
    pkg syscall (linux-arm-cgo), type TCPInfo struct, Lost uint32
    pkg syscall (linux-arm-cgo), type TCPInfo struct, Options uint8
    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)
Back to top