Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 308 for authenticating (0.16 sec)

  1. 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)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

            }
    
            // Authentication
            final Authentication[] siteCredentialList = {};
            for (final Authentication authentication : siteCredentialList) {
                final AuthScope authScope = authentication.getAuthScope();
                credentialsProvider.setCredentials(authScope, authentication.getCredentials());
                final AuthScheme authScheme = authentication.getAuthScheme();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/net/http/socks_bundle.go

    	// AuthMethods specifies the list of request authentication
    	// methods.
    	// If empty, SOCKS client requests only AuthMethodNotRequired.
    	AuthMethods []socksAuthMethod
    
    	// Authenticate specifies the optional authentication
    	// function. It must be non-nil when AuthMethods is not empty.
    	// It must return an error when the authentication is failed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

        }
    
        protected static <T> boolean eq(T s1, T s2) {
            return Objects.equals(s1, s2);
        }
    
        public Authentication getAuthentication() {
            return authentication;
        }
    
        public void setAuthentication(Authentication authentication) {
            this.authentication = authentication;
        }
    
        public Proxy getProxy() {
            return proxy;
        }
    
        public void setProxy(Proxy proxy) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 11K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

            },
            "type": "object"
          },
          "io.k8s.api.authentication.v1alpha1.SelfSubjectReview": {
            "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    				Usages: []string{"authentication", "signing"},
    			},
    			map[string][]byte{
    				"token-id":                       []byte("abcdef"),
    				"token-secret":                   []byte("abcdef0123456789"),
    				"usage-bootstrap-signing":        []byte("true"),
    				"usage-bootstrap-authentication": []byte("true"),
    			},
    		},
    		{
    			"adds groups",
    			&BootstrapToken{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

            },
            "type": "object"
          },
          "io.k8s.api.authentication.v1beta1.SelfSubjectReview": {
            "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/options/options.go

    			ResourceName:      "kube-scheduler",
    			ResourceNamespace: "kube-system",
    		},
    		Metrics: metrics.NewOptions(),
    		Logs:    logs.NewOptions(),
    	}
    
    	o.Authentication.TolerateInClusterLookupFailure = true
    	o.Authentication.RemoteKubeConfigFileOptional = true
    	o.Authorization.RemoteKubeConfigFileOptional = true
    
    	// Set the PairName but leave certificate directory blank to generate in-memory by default
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultBaseRepositoryFactory.java

    import org.gradle.api.internal.file.FileResolver;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.ProviderFactory;
    import org.gradle.authentication.Authentication;
    import org.gradle.internal.authentication.AuthenticationSchemeRegistry;
    import org.gradle.internal.authentication.DefaultAuthenticationContainer;
    import org.gradle.internal.component.external.model.ModuleComponentArtifactIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. docs/logging/README.md

    sasl_username    (string)    username for SASL/PLAIN or SASL/SCRAM authentication
    sasl_password    (string)    password for SASL/PLAIN or SASL/SCRAM authentication
    sasl_mechanism   (string)    sasl authentication mechanism, default 'plain'
    tls_client_auth  (string)    clientAuth determines the Kafka server's policy for TLS client auth
    sasl             (on|off)    set to 'on' to enable SASL authentication
    tls              (on|off)    set to 'on' to enable TLS
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top