Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Authenticators (0.19 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          MockResponse(body = "c"),
        )
        val authenticator =
          RecordingOkAuthenticator(
            basic("jesse", "peanutbutter"),
            "Basic",
          )
        client =
          client.newBuilder()
            .authenticator(authenticator)
            .build()
        assertContent("c", getResponse(newRequest("/a")))
        val challengeResponse = authenticator.responses[0]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	defer ts.Close()
    
    	// Make the certificate of the helper server available to the authenticator
    	caBundle := pem.EncodeToMemory(&pem.Block{
    		Type:  "CERTIFICATE",
    		Bytes: ts.Certificate().Raw,
    	})
    	caContent, err := dynamiccertificates.NewStaticCAContent("oidc-authenticator", caBundle)
    	if err != nil {
    		t.Fatalf("initialize ca: %v", err)
    	}
    	c.options.CAContentProvider = caContent
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

            .authenticator(authenticator)
            .build()
        executeSynchronously("/")
          .assertCode(401)
        assertThat(authenticator.onlyRoute()).isNotNull()
      }
    
      @Test
      fun delete() {
        server.enqueue(MockResponse(body = "abc"))
        val request =
          Request.Builder()
            .url(server.url("/"))
            .delete()
            .build()
        executeSynchronously(request)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/Address;->equalsNonHost$okhttp(Lokhttp3/Address;)Z
    HSPLokhttp3/Address;->hashCode()I
    HSPLokhttp3/Authenticator$Companion$AuthenticatorNone;-><init>()V
    HSPLokhttp3/Authenticator;-><clinit>()V
    HSPLokhttp3/Cache;-><init>(Ljava/io/File;J)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Reduce time needed to attach Azure disks ([#40066](https://github.com/kubernetes/kubernetes/pull/40066), [@codablock](https://github.com/codablock))
    * Fixes request header authenticator by presenting the request header client CA so that the front proxy will authenticate using its client certificate. ([#40301](https://github.com/kubernetes/kubernetes/pull/40301), [@deads2k](https://github.com/deads2k))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

    * Add support for --image-pull-policy to 'kubectl run' ([#30614](https://github.com/kubernetes/kubernetes/pull/30614), [@AdoHe](https://github.com/AdoHe))
    * x509 authenticator: get groups from subject's organization field ([#30392](https://github.com/kubernetes/kubernetes/pull/30392), [@ericchiang](https://github.com/ericchiang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top