Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for wrTx (0.14 sec)

  1. src/net/pipe.go

    	// Successful receive on rdRx is always followed by send on rdTx.
    	rdRx <-chan []byte
    	rdTx chan<- int
    
    	// Used by local Write to interact with remote Read.
    	// Successful send on wrTx is always followed by receive on wrRx.
    	wrTx chan<- []byte
    	wrRx <-chan int
    
    	once       sync.Once // Protects closing localDone
    	localDone  chan struct{}
    	remoteDone <-chan struct{}
    
    	readDeadline  pipeDeadline
    	writeDeadline pipeDeadline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top