Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,750 for tokEnd (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    	threadCount := []int{1, 16, 256}
    	for _, tokens := range tokenCount {
    		for _, threads := range threadCount {
    			newSingleBenchmark(tokens, threads).run(b)
    		}
    	}
    }
    
    func newSingleBenchmark(tokens, threads int) *singleBenchmark {
    	s := &singleBenchmark{
    		threadCount: threads,
    		tokenCount:  tokens,
    	}
    	s.makeTokens()
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. docs/sts/custom-token-identity.md

    | Version         | String  | Yes      | Value must be `2011-06-15`                                           |
    | Token           | String  | Yes      | Token to be authenticated by identity plugin                         |
    | RoleArn         | String  | Yes      | Must match the Role ARN generated for the identity plugin            |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap.go

    //	type: bootstrap.kubernetes.io/token
    //	data:
    //	  token-secret: ( private part of token )
    //	  token-id: ( token id )
    //	  # Required key usage.
    //	  usage-bootstrap-authentication: true
    //	  auth-extra-groups: "system:bootstrappers:custom-group1,system:bootstrappers:custom-group2"
    //	  # May also contain an expiry.
    //
    // Tokens are expected to be of the form:
    //
    //	( token-id ).( token-secret )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 20:38:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. security/pkg/credentialfetcher/plugin/token.go

    	}
    }
    
    func (t KubernetesTokenPlugin) GetPlatformCredential() (string, error) {
    	if t.path == "" {
    		return "", nil
    	}
    	tok, err := os.ReadFile(t.path)
    	if err != nil {
    		log.Warnf("failed to fetch token from file: %v", err)
    		return "", nil
    	}
    	return strings.TrimSpace(string(tok)), nil
    }
    
    func (t KubernetesTokenPlugin) GetIdentityProvider() string {
    	return ""
    }
    
    func (t KubernetesTokenPlugin) Stop() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public void testAssignableClassToType() {
        TypeToken<List<String>> tokenL = new TypeToken<List<String>>() {};
        assertTrue(tokenL.isSupertypeOf(StringList.class));
        assertFalse(tokenL.isSupertypeOf(List.class));
    
        TypeToken<First<String>> tokenF = new TypeToken<First<String>>() {};
        assertTrue(tokenF.isSupertypeOf(ConcreteIS.class));
        assertFalse(tokenF.isSupertypeOf(ConcreteSI.class));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. cni/pkg/install/testdata/token-foo

    Sergei Gavrilov <******@****.***> 1657207540 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 07 15:25:40 UTC 2022
    - 3 bytes
    - Viewed (0)
  7. tests/integration/security/authz_test.go

    						},
    						{
    							prefix: "[Token2]",
    							jwt:    jwt.TokenIssuer2,
    							path:   "/token1",
    							allow:  false,
    						},
    						{
    							prefix: "[Token2]",
    							jwt:    jwt.TokenIssuer2,
    							path:   "/token2",
    							allow:  true,
    						},
    						{
    							prefix: "[Token3]",
    							jwt:    jwt.TokenIssuer1,
    							path:   "/token3",
    							allow:  false,
    						},
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. cni/pkg/install/testdata/token-bar

    Sergei Gavrilov <******@****.***> 1657207540 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 07 15:25:40 UTC 2022
    - 3 bytes
    - Viewed (0)
  9. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap_test.go

    						bootstrapapi.BootstrapTokenSecretKey: []byte(tokenSecret),
    					},
    					Type: "bootstrap.kubernetes.io/token",
    				},
    			},
    			token:        tokenID + "." + tokenSecret,
    			wantNotFound: true,
    		},
    		{
    			name: "wrong token",
    			secrets: []*corev1.Secret{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: bootstrapapi.BootstrapTokenSecretPrefix + tokenID,
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 04 18:36:05 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/bootstraptoken.go

    	if !ok {
    		return errors.New("bootstrap-token phase invoked with an invalid data struct")
    	}
    
    	client, err := data.Client()
    	if err != nil {
    		return err
    	}
    
    	if !data.SkipTokenPrint() {
    		tokens := data.Tokens()
    		if len(tokens) == 1 {
    			fmt.Printf("[bootstrap-token] Using token: %s\n", tokens[0])
    		} else if len(tokens) > 1 {
    			fmt.Printf("[bootstrap-token] Using tokens: %v\n", tokens)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top