Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for closeWrite (0.12 sec)

  1. src/net/http/export_test.go

    	// if needed.
    	rstAvoidanceDelay = 1 * time.Nanosecond
    }
    
    // SetRSTAvoidanceDelay sets how long we are willing to wait between calling
    // CloseWrite on a connection and fully closing the connection.
    func SetRSTAvoidanceDelay(t *testing.T, d time.Duration) {
    	prevDelay := rstAvoidanceDelay
    	t.Cleanup(func() {
    		rstAvoidanceDelay = prevDelay
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. internal/ringbuffer/README.md

    `TryRead` and `TryWrite` are still available for non-blocking reads and writes.
    
    To signify the end of the stream, close the ring buffer from the writer side with `rb.CloseWriter()`
    
    Either side can use `rb.CloseWithError(err error)` to signal an error and close the ring buffer. 
    Any reads or writes will return the error on next call.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top