Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for closenotify (0.42 sec)

  1. src/net/http/h2_bundle.go

    			select {
    			case <-rws.stream.cw:
    				err = rws.stream.closeErr
    			default:
    			}
    		}
    	}
    	return err
    }
    
    func (w *http2responseWriter) CloseNotify() <-chan bool {
    	rws := w.rws
    	if rws == nil {
    		panic("CloseNotify called after Handler finished")
    	}
    	rws.closeNotifierMu.Lock()
    	ch := rws.closeNotifierCh
    	if ch == nil {
    		ch = make(chan bool, 1)
    		rws.closeNotifierCh = ch
    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. src/crypto/tls/conn_test.go

    	if recordSizes == nil {
    		t.Fatalf("Client encountered an error")
    	}
    
    	// Drop the size of the second to last record, which is likely to be
    	// truncated, and the last record, which is a close_notify alert.
    	recordSizes = recordSizes[:len(recordSizes)-2]
    
    	// recordSizes should contain a series of records smaller than
    	// tcpMSSEstimate followed by some larger than maxPlaintext.
    	seenLargeRecord := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg net/http, method (*ServeMux) Handler(*Request) (Handler, string)
    pkg net/http, method (*Transport) CancelRequest(*Request)
    pkg net/http, type CloseNotifier interface { CloseNotify }
    pkg net/http, type CloseNotifier interface, CloseNotify() <-chan bool
    pkg net/http, type Request struct, PostForm url.Values
    pkg net/http, type Server struct, TLSNextProto map[string]func(*Server, *tls.Conn, Handler)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top