Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 330 for authenticating (0.81 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

            "x-kubernetes-group-version-kind": [
              {
                "group": "authentication.k8s.io",
                "kind": "TokenReview",
                "version": "v1"
              }
            ]
          },
          "io.k8s.api.authentication.v1.TokenReviewSpec": {
            "description": "TokenReviewSpec is a description of the token authentication request.",
            "properties": {
              "audiences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    			r.ok = true
    			r.err = nil
    
    			// add some realistic annotations on ~20% of successful authentications
    			if f := rr.Float64(); f < 0.2 {
    				r.annotations = map[string]string{
    					"audience.authentication.kubernetes.io":  "e8357258-88b1-11ea-bc55-0242ac130003",
    					"namespace.authentication.kubernetes.io": "kube-system",
    					"float.authentication.kubernetes.io":     fmt.Sprint(f),
    				}
    			}
    		case choice < 0.99:
    			r.ok = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top