Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 470 for authenticating (0.33 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1beta1.SelfSubjectReview.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 486 bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/RealizedJavaToolchainRepository.java

            return resolverProvider.get();
        }
    
        public Collection<Authentication> getAuthentications(URI uri) {
            Collection<Authentication> configuredAuthentication = repository.getConfiguredAuthentication();
    
            for (Authentication authentication : configuredAuthentication) {
                AuthenticationInternal authenticationInternal = (AuthenticationInternal) authentication;
                if (uri.getScheme().startsWith("http")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 10:09:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResourcesServices.java

    import org.gradle.authentication.http.BasicAuthentication;
    import org.gradle.authentication.http.DigestAuthentication;
    import org.gradle.authentication.http.HttpHeaderAuthentication;
    import org.gradle.internal.authentication.AuthenticationSchemeRegistry;
    import org.gradle.internal.authentication.DefaultBasicAuthentication;
    import org.gradle.internal.authentication.DefaultDigestAuthentication;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authentication_test.go

    		},
    		{
    			name: "authentication-config file, feature gate is not enabled",
    			args: []string{
    				"--authentication-config=configfile",
    			},
    			expectErr: "set --feature-gates=StructuredAuthenticationConfiguration=true to use authentication-config file",
    		},
    		{
    			name: "authentication-config file, --oidc-issuer-url is set",
    			args: []string{
    				"--authentication-config=configfile",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1beta1.TokenReview.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 540 bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/options/options.go

    		if completed.Authentication.ServiceAccounts.MaxExpiration != 0 {
    			lowBound := time.Hour
    			upBound := time.Duration(1<<32) * time.Second
    			if completed.Authentication.ServiceAccounts.MaxExpiration < lowBound ||
    				completed.Authentication.ServiceAccounts.MaxExpiration > upBound {
    				return CompletedOptions{}, fmt.Errorf("the service-account-max-token-expiration must be between 1 hour and 2^32 seconds")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. fastapi/security/http.py

                    This is useful when you want to have optional authentication.
    
                    It is also useful when you want to have authentication that can be
                    provided in one of multiple optional ways (for example, in HTTP Basic
                    authentication or in an HTTP Bearer token).
                    """
                ),
            ] = True,
        ):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/authenticator/config.go

    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/authenticatorfactory"
    	"k8s.io/apiserver/pkg/authentication/group"
    	"k8s.io/apiserver/pkg/authentication/request/anonymous"
    	"k8s.io/apiserver/pkg/authentication/request/bearertoken"
    	"k8s.io/apiserver/pkg/authentication/request/headerrequest"
    	"k8s.io/apiserver/pkg/authentication/request/union"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/kubeconfig/kubeconfig.go

    }
    
    // HasAuthenticationCredentials returns true if the current user has valid authentication credentials for
    // token authentication, basic authentication or X509 authentication
    func HasAuthenticationCredentials(config *clientcmdapi.Config) bool {
    	authInfo := getCurrentAuthInfo(config)
    	if authInfo == nil {
    		return false
    	}
    
    	// token authentication
    	if len(authInfo.Token) != 0 || len(authInfo.TokenFile) != 0 {
    		return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 10:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1.TokenReview.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 535 bytes
    - Viewed (0)
Back to top