Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testbuffer (0.45 sec)

  1. src/net/http/h2_bundle.go

    }
    
    type http2pipeBuffer interface {
    	Len() int
    	io.Writer
    	io.Reader
    }
    
    // setBuffer initializes the pipe buffer.
    // It has no effect if the pipe is already closed.
    func (p *http2pipe) setBuffer(b http2pipeBuffer) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    	if p.err != nil || p.breakErr != nil {
    		return
    	}
    	p.b = b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top