Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 723 for authenticating (0.24 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/features/security.go

    	trustedGatewayCIDR = env.Register(
    		"TRUSTED_GATEWAY_CIDR",
    		"",
    		"If set, any connections from gateway to Istiod with this CIDR range are treated as trusted for using authentication mechanisms like XFCC."+
    			" This can only be used when the network where Istiod and the authenticating gateways are running in a trusted/secure network",
    	)
    
    	TrustedGatewayCIDR = func() []string {
    		cidr := trustedGatewayCIDR.Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 13 03:50:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.integtests.resolve.http
    
    import org.gradle.authentication.http.BasicAuthentication
    import org.gradle.authentication.http.DigestAuthentication
    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    import org.gradle.integtests.fixtures.resolve.ResolveFailureTestFixture
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. internal/kms/config.go

    	EnvKESClientKey      = "MINIO_KMS_KES_KEY_FILE"     // Path to TLS private key for authenticating to KES with mTLS - usually prefer API keys
    	EnvKESClientCert     = "MINIO_KMS_KES_CERT_FILE"    // Path to TLS certificate for authenticating to KES with mTLS - usually prefer API keys
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top