Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 973 for authenticating (0.33 sec)

  1. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCacheCredentials.java

        private String password;
    
        /**
         * Returns the user name to use when authenticating to the HTTP build cache.
         *
         * @return The user name. May be null.
         */
        @Override
        @Nullable
        public String getUsername() {
            return username;
        }
    
        /**
         * Sets the user name to use when authenticating to the HTTP build cache.
         *
         * @param username The user name. May be null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/poly1305.go

    // Package poly1305 implements Poly1305 one-time message authentication code as
    // specified in https://cr.yp.to/mac/poly1305-20050329.pdf.
    //
    // Poly1305 is a fast, one-time authentication function. It is infeasible for an
    // attacker to generate an authenticator for a message without the key. However, a
    // key must only be used for a single message. Authenticating two different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics_test.go

    			authenticator: &dummyAuthenticator{response: &authenticator.Response{}, ok: true},
    			expectedValue: `
            # HELP apiserver_authentication_jwt_authenticator_latency_seconds [ALPHA] Latency of jwt authentication operations in seconds. This is the time spent authenticating a token for cache miss only (i.e. when the token is not found in the cache).
            # TYPE apiserver_authentication_jwt_authenticator_latency_seconds histogram
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	IssuedCredentialIDAuditAnnotationKey = "authentication.kubernetes.io/issued-credential-id"
    	// PodNameKey is the key used in a user's "extra" to specify the pod name of
    	// the authenticating request.
    	PodNameKey = "authentication.kubernetes.io/pod-name"
    	// PodUIDKey is the key used in a user's "extra" to specify the pod UID of
    	// the authenticating request.
    	PodUIDKey = "authentication.kubernetes.io/pod-uid"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. security/pkg/k8s/tokenreview/k8sauthn.go

    	// the authenticating request.
    	PodNameKey = "authentication.kubernetes.io/pod-name"
    	// PodUIDKey is the key used in a user's "extra" to specify the pod UID of
    	// the authenticating request.
    	PodUIDKey = "authentication.kubernetes.io/pod-uid"
    )
    
    // ValidateK8sJwt validates a k8s JWT at API server.
    // Return {<namespace>, <serviceaccountname>} in the targetToken when the validation passes.
    // Otherwise, return the error.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 13 17:12:41 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

    import org.gradle.api.specs.Spec;
    import org.gradle.authentication.Authentication;
    import org.gradle.authentication.http.BasicAuthentication;
    import org.gradle.authentication.http.DigestAuthentication;
    import org.gradle.authentication.http.HttpHeaderAuthentication;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.authentication.AllSchemesAuthentication;
    import org.gradle.internal.authentication.AuthenticationInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/networking.adoc

    === NTLM Authentication
    
    If your proxy requires NTLM authentication, you may need to provide the authentication domain as well as the username and password.
    
    There are 2 ways that you can provide the domain for authenticating to a NTLM proxy:
    
    * Set the `http.proxyUser` system property to a value like `__domain__/__username__`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/kt/Authenticate.kt

              ): Request? {
                if (response.request.header("Authorization") != null) {
                  return null // Give up, we've already attempted to authenticate.
                }
    
                println("Authenticating for response: $response")
                println("Challenges: ${response.challenges()}")
                val credential = Credentials.basic("jesse", "password1")
                return response.request.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/Authenticate.java

              if (response.request().header("Authorization") != null) {
                return null; // Give up, we've already attempted to authenticate.
              }
    
              System.out.println("Authenticating for response: " + response);
              System.out.println("Challenges: " + response.challenges());
              String credential = Credentials.basic("jesse", "password1");
              return response.request().newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Aug 12 07:26:27 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics.go

    			Subsystem:      subsystem,
    			Name:           "jwt_authenticator_latency_seconds",
    			Help:           "Latency of jwt authentication operations in seconds. This is the time spent authenticating a token for cache miss only (i.e. when the token is not found in the cache).",
    			StabilityLevel: metrics.ALPHA,
    			// default histogram buckets with a 1ms starting point
    			Buckets: []float64{.001, .005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5, 10},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top