Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ErrPersistEOF (0.28 sec)

  1. src/net/http/httputil/persist.go

    			// graceful close, even if there was some unparse-able
    			// data before the close.
    			sc.re = ErrPersistEOF
    			return nil, sc.re
    		} else {
    			sc.re = err
    			return req, err
    		}
    	}
    	sc.lastbody = req.Body
    	sc.nread++
    	if req.Close {
    		sc.re = ErrPersistEOF
    		return req, sc.re
    	}
    	return req, err
    }
    
    // Pending returns the number of unanswered requests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	response, err := proxyClientConn.Do(&proxyReq)
    	//nolint:staticcheck // SA1019 ignore deprecated httputil.ErrPersistEOF: it might be
    	// returned from the invocation of proxyClientConn.Do
    	if err != nil && err != httputil.ErrPersistEOF {
    		return nil, err
    	}
    	if response != nil && response.StatusCode >= 300 || response.StatusCode < 200 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BufferPool", Type, 6},
    		{"ClientConn", Type, 0},
    		{"DumpRequest", Func, 0},
    		{"DumpRequestOut", Func, 0},
    		{"DumpResponse", Func, 0},
    		{"ErrClosed", Var, 0},
    		{"ErrLineTooLong", Var, 0},
    		{"ErrPersistEOF", Var, 0},
    		{"ErrPipeline", Var, 0},
    		{"NewChunkedReader", Func, 0},
    		{"NewChunkedWriter", Func, 0},
    		{"NewClientConn", Func, 0},
    		{"NewProxyClientConn", Func, 0},
    		{"NewServerConn", Func, 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)
  4. api/go1.16.txt

    pkg net/http/httputil, type ClientConn //deprecated
    pkg net/http/httputil, type ServerConn //deprecated
    pkg net/http/httputil, var ErrClosed //deprecated
    pkg net/http/httputil, var ErrPersistEOF //deprecated
    pkg net/http/httputil, var ErrPipeline //deprecated
    pkg os, const SEEK_CUR //deprecated
    pkg os, const SEEK_END //deprecated
    pkg os, const SEEK_SET //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg net/http/httputil, type ServerConn struct
    pkg net/http/httputil, var ErrClosed *http.ProtocolError
    pkg net/http/httputil, var ErrLineTooLong error
    pkg net/http/httputil, var ErrPersistEOF *http.ProtocolError
    pkg net/http/httputil, var ErrPipeline *http.ProtocolError
    pkg net/http/pprof, func Cmdline(http.ResponseWriter, *http.Request)
    pkg net/http/pprof, func Handler(string) http.Handler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top