Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,679 for Replies (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    	// it returns 503 if not all registered signals have been ready (closed) otherwise it simply replies with 404.
    	// the apiextentionserver is considered to be initialized once hasCRDInformerSyncedSignal is closed.
    	//
    	// here, in this test the delegate represent the special handler and hasSync represents the signal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_2x.md

     *  Fix: Don't resolve DNS addresses when connecting through a SOCKS proxy.
     *  Fix: Drop the synthetic `OkHttp-Selected-Protocol` response header.
     *  Fix: Support 204 and 205 'No Content' replies in the logging interceptor.
     *  New: Add `Call.isExecuted()`.
    
    
    ## Version 2.6.0
    
    _2015-11-22_
    
     *  **New Logging Interceptor.** The `logging-interceptor` subproject offers
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  3. src/net/http/client.go

    // non-nil error only occurs when CheckRedirect fails, and even then
    // the returned [Response.Body] is already closed.
    //
    // Generally [Get], [Post], or [PostForm] will be used instead of Do.
    //
    // If the server replies with a redirect, the Client first uses the
    // CheckRedirect function to determine whether the redirect should be
    // followed. If permitted, a 301, 302, or 303 redirect causes
    // subsequent requests to use HTTP method GET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    			body, rgz)
    	}
    	if g, e := res.Header.Get("Content-Encoding"), ""; g != e {
    		t.Fatalf("Content-Encoding = %q; want %q", g, e)
    	}
    }
    
    // golang.org/issue/7750: request fails when server replies with
    // a short gzip body
    func TestTransportGzipShort(t *testing.T) { run(t, testTransportGzipShort) }
    func testTransportGzipShort(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    		// the remaining parts.
    		partOffset = 0
    	} // End of read all parts loop.
    	// Return success.
    	return nil
    }
    
    // GetObjectInfo - reads object metadata and replies back ObjectInfo.
    func (er erasureObjects) GetObjectInfo(ctx context.Context, bucket, object string, opts ObjectOptions) (info ObjectInfo, err error) {
    	if !opts.NoAuditLog {
    		auditObjectErasureSet(ctx, object, &er)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      optional string level = 1;
    
      // The users (by authenticated user name) this rule applies to.
      // An empty list implies every user.
      // +optional
      // +listType=atomic
      repeated string users = 2;
    
      // The user groups this rule applies to. A user is considered matching
      // if it is a member of any of the UserGroups.
      // An empty list implies every user group.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// An empty list implies every user.
    	// +optional
    	Users []string
    	// The user groups this rule applies to. A user is considered matching
    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	UserGroups []string
    
    	// The verbs that match this rule.
    	// An empty list implies every verb.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    		if clientGone {
    			// TODO: could we also get into this state if
    			// the peer does a half close
    			// (e.g. CloseWrite) because they're done
    			// sending frames but they're still wanting
    			// our open replies?  Investigate.
    			// TODO: add CloseWrite to crypto/tls.Conn first
    			// so we have a way to test this? I suppose
    			// just for testing we could have a non-TLS mode.
    			return false
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// The users (by authenticated user name) this rule applies to.
    	// An empty list implies every user.
    	// +optional
    	// +listType=atomic
    	Users []string `json:"users,omitempty" protobuf:"bytes,2,rep,name=users"`
    	// The user groups this rule applies to. A user is considered matching
    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                by the rule. \n For NetworkPolicy, an empty NamespaceSelector
                                implies that the Selector is limited to selecting only
                                workload endpoints in the same namespace as the NetworkPolicy.
                                \n For NetworkPolicy, `global()` NamespaceSelector implies
                                that the Selector is limited to selecting only GlobalNetworkSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
Back to top