Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for clientV3 (0.13 sec)

  1. pkg/apis/core/v1/defaults_test.go

    					ClientIP: &v1.ClientIPConfig{
    						TimeoutSeconds: nil,
    					},
    				},
    			},
    		},
    	}
    	for name, test := range testCases {
    		obj2 := roundTrip(t, runtime.Object(&test))
    		svc2 := obj2.(*v1.Service)
    		if svc2.Spec.SessionAffinityConfig == nil || svc2.Spec.SessionAffinityConfig.ClientIP == nil || svc2.Spec.SessionAffinityConfig.ClientIP.TimeoutSeconds == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

            .build(),
        )
        val client1 =
          client.newBuilder()
            .readTimeout(Duration.ofSeconds(2))
            .build()
        val call1 =
          client1
            .newCall(
              Request.Builder()
                .url(server.url("/"))
                .build(),
            )
        val client2 =
          client.newBuilder()
            .readTimeout(Duration.ofMillis(200))
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

    		Secure:    s.secure,
    		Transport: s.TestSuiteCommon.client.Transport,
    	})
    	if err != nil {
    		c.Fatalf("Error initializing client: %v", err)
    	}
    
    	// Validate that the client from sts creds can access the bucket.
    	c.mustListObjects(ctx, minioClient, bucket)
    
    	// Create an madmin client with user creds
    	userAdmClient, err := madmin.NewWithOptions(s.endpoint, &madmin.Options{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  4. src/net/http/request.go

    // or to be sent by a client.
    //
    // The field semantics differ slightly between client and server
    // usage. In addition to the notes on the fields below, see the
    // documentation for [Request.Write] and [RoundTripper].
    type Request struct {
    	// Method specifies the HTTP method (GET, POST, PUT, etc.).
    	// For client requests, an empty string means GET.
    	Method string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// certificate. If the client does send a certificate it is required to be
    	// valid.
    	VerifyClientCertIfGiven
    	// RequireAndVerifyClientCert indicates that a client certificate should be requested
    	// during the handshake, and that at least one valid certificate is required
    	// to be sent by the client.
    	RequireAndVerifyClientCert
    )
    
    // requiresClientCert reports whether the ClientAuthType requires a client
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

     *  New: `okhttp-sse` is an early preview of Server-Sent Events (SSE). This feature is incomplete
        and is only suitable for experimental use.
     *  New: MockWebServer now supports client authentication (mutual TLS). Call `requestClientAuth()`
        to permit an optional client certificate or `requireClientAuth()` to require one.
     *  New: `RecordedRequest.getHandshake()` returns the HTTPS handshake of a request sent to
        `MockWebServer`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * ```java
     * // The singleton HTTP client.
     * public final OkHttpClient client = new OkHttpClient.Builder()
     *     .addInterceptor(new HttpLoggingInterceptor())
     *     .cache(new Cache(cacheDir, cacheSize))
     *     .build();
     * ```
     *
     * ## Customize Your Client With newBuilder()
     *
     * You can customize a shared OkHttpClient instance with [newBuilder]. This builds a client that
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    	serverConn = &recordingConn{Conn: serverConn}
    	go func() {
    		config := testConfig.Clone()
    		config.MaxVersion = version
    		config.CurvePreferences = []CurveID{curve}
    		client := Client(clientConn, config)
    		client.Handshake()
    	}()
    	server := Server(serverConn, config)
    	if err := server.Handshake(); err != nil {
    		b.Fatalf("handshake failed: %v", err)
    	}
    	serverConn.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top