Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for buffer_end (0.13 sec)

  1. src/net/http/h2_bundle.go

    func (cw http2closeWaiter) Wait() {
    	<-cw
    }
    
    // bufferedWriter is a buffered writer that writes to w.
    // Its buffered writer is lazily allocated as needed, to minimize
    // idle memory usage with many connections.
    type http2bufferedWriter struct {
    	_  http2incomparable
    	w  io.Writer     // immutable
    	bw *bufio.Writer // non-nil when data is buffered
    }
    
    func http2newBufferedWriter(w io.Writer) *http2bufferedWriter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. doc/go_spec.html

    If the capacity is zero or absent, the channel is unbuffered and communication
    succeeds only when both a sender and receiver are ready. Otherwise, the channel
    is buffered and communication succeeds without blocking if the buffer
    is not full (sends) or not empty (receives).
    A <code>nil</code> channel is never ready for communication.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top