Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ResponseController (0.31 sec)

  1. src/net/http/request.go

    func (pe *ProtocolError) Is(err error) bool {
    	return pe == ErrNotSupported && err == errors.ErrUnsupported
    }
    
    var (
    	// ErrNotSupported indicates that a feature is not supported.
    	//
    	// It is returned by ResponseController methods to indicate that
    	// the handler does not support the method, and by the Push method
    	// of Pusher implementations to indicate that HTTP/2 Push support
    	// is not available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Response).ProtoAtLeast", Method, 0},
    		{"(*Response).Write", Method, 0},
    		{"(*ResponseController).EnableFullDuplex", Method, 21},
    		{"(*ResponseController).Flush", Method, 20},
    		{"(*ResponseController).Hijack", Method, 20},
    		{"(*ResponseController).SetReadDeadline", Method, 20},
    		{"(*ResponseController).SetWriteDeadline", Method, 20},
    		{"(*ServeMux).Handle", Method, 0},
    		{"(*ServeMux).HandleFunc", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// can deadlock if we start writing the response with unconsumed body
    	// remaining. See Issue 15527 for some history.
    	//
    	// If full duplex mode has been enabled with ResponseController.EnableFullDuplex,
    	// then leave the request body alone.
    	//
    	// We don't take this path when w.closeAfterReply is set.
    	// We may not need to consume the request to get ready for the next one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top