Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for replySentChan (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection_test.go

    		t.Errorf("server: error accepting connection: %v", err)
    		return
    	}
    
    	streamChan := make(chan httpstream.Stream)
    	replySentChan := make(chan (<-chan struct{}))
    	spdyConn, err := NewServerConnection(conn, func(stream httpstream.Stream, replySent <-chan struct{}) error {
    		streamChan <- stream
    		replySentChan <- replySent
    		return nil
    	})
    	if err != nil {
    		t.Errorf("server: error creating spdy connection: %v", err)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 11:58:57 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top