Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for respondsTo (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	Object(statusCode int, obj runtime.Object)
    	// Error writes the provided error to the response. This method may only be invoked once.
    	Error(err error)
    }
    
    // Connecter is a storage object that responds to a connection request.
    type Connecter interface {
    	// Connect returns an http.Handler that will handle the request/response for a given API invocation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       * have been received. If the returned list contains multiple blocks of headers the blocks will be
       * delimited by 'null'.
       *
       * @param callerIsIdle true if the caller isn't sending any more bytes until the peer responds.
       *     This is true after a `Expect-Continue` request, false for duplex requests, and false for
       *     all other requests.
       */
      @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Authentication based on any custom HTTP header, e.g. private tokens, OAuth tokens, etc.
    
    [[sub:preemptive_authentication]]
    === Using preemptive authentication
    
    Gradle's default behavior is to only submit credentials when a server responds with an authentication challenge in the form of an HTTP 401 response.
    In some cases, the server will respond with a different code (ex. for repositories hosted on GitHub a 404 is returned) causing dependency resolution to fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  4. src/net/http/requestwrite_test.go

    	// on the wire, but not using TCP.  Use a Transport with a
    	// custom dialer that returns a fake net.Conn that waits
    	// for the full input (and recording it), and then responds
    	// with a dummy response.
    	var buf bytes.Buffer // records the output
    	pr, pw := io.Pipe()
    	defer pr.Close()
    	defer pw.Close()
    	dr := &delegateReader{c: make(chan io.Reader)}
    
    	t := &Transport{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server.go

    	http.StatusOK,
    	http.StatusFound,
    	http.StatusMovedPermanently,
    	http.StatusTemporaryRedirect,
    	http.StatusBadRequest,
    	http.StatusNotFound,
    	http.StatusSwitchingProtocols,
    )
    
    // ServeHTTP responds to HTTP requests on the Kubelet.
    func (s *Server) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	handler := httplog.WithLogging(s.restfulCont, statusesNoTracePred)
    
    	// monitor http requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top