Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,109 for authenticating (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/credentials/PasswordCredentials.java

     * @since 3.5
     */
    public interface PasswordCredentials extends Credentials {
        /**
         * Returns the user name to use when authenticating.
         *
         * @return The user name. May be null.
         */
        @Nullable
        String getUsername();
    
        /**
         * Sets the user name to use when authenticating.
         *
         * @param userName The user name. May be null.
         */
        void setUsername(@Nullable String userName);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 14:46:47 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/PasswordCredentials.java

        /**
         * Returns the user name to use when authenticating to this repository.
         *
         * @return The user name. May be null.
         */
        @Override
        @Nullable
        String getUsername();
    
        /**
         * Sets the user name to use when authenticating to this repository.
         *
         * @param userName The user name. May be null.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/credentials/HttpHeaderCredentials.java

     */
    public interface HttpHeaderCredentials extends Credentials {
    
        /**
         * Returns the header name to use when authenticating.
         *
         * @return The header name. May be null.
         */
        @Nullable
        String getName();
    
        /**
         * Sets the header name to use when authenticating.
         *
         * @param name The header name. May be null.
         */
        void setName(@Nullable String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 17 09:29:35 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/requestheader.go

    	//	It may produce different options at will.
    	CAContentProvider dynamiccertificates.CAContentProvider
    	// AllowedClientNames is a list of common names that may be presented by the authenticating front proxy.  Empty means: accept any.
    	AllowedClientNames headerrequest.StringSliceProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
Back to top