Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 491 for authenticating (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/impl/AuthenticationImpl.java

    import org.apache.http.auth.AuthScheme;
    import org.apache.http.auth.AuthScope;
    import org.apache.http.auth.Credentials;
    import org.codelibs.fess.crawler.client.http.Authentication;
    
    /**
     * @author shinsuke
     *
     */
    public class AuthenticationImpl implements Authentication {
        private AuthScope authScope;
    
        private Credentials credentials;
    
        private AuthScheme authScheme;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authentication/v1alpha1/generated.proto

    syntax = "proto2";
    
    package k8s.io.api.authentication.v1alpha1;
    
    import "k8s.io/api/authentication/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1alpha1";
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/discovery/discovery.go

    		), nil
    	}
    
    	// if the config returned from discovery has authentication credentials, proceed with the TLS boostrap process
    	if kubeconfigutil.HasAuthenticationCredentials(config) {
    		return config, nil
    	}
    
    	// if there are no authentication credentials (nor in the config returned from discovery, nor in the TLSBootstrapToken), fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/token_test.go

    			token:         "",
    			usages:        []string{"signing", "authentication"},
    			extraGroups:   []string{"system:bootstrappers:foo"},
    			expectedError: false,
    		},
    		{
    			name:          "valid: non-empty token",
    			token:         "abcdef.1234567890123456",
    			usages:        []string{"signing", "authentication"},
    			extraGroups:   []string{"system:bootstrappers:foo"},
    			expectedError: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/legacy/LegacyRepositorySystemTest.java

            repositorySystem.injectAuthentication(Arrays.asList(repository), Arrays.asList(server));
            Authentication authentication = repository.getAuthentication();
            assertNotNull(authentication);
            assertEquals("jason", authentication.getUsername());
            assertEquals("abc123", authentication.getPassword());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top