Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 400 for toSend (0.14 sec)

  1. 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)
  2. 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)
  3. src/compress/flate/token.go

    }
    
    type token uint32
    
    // Convert a literal into a literal token.
    func literalToken(literal uint32) token { return token(literalType + literal) }
    
    // Convert a < xlength, xoffset > pair into a match token.
    func matchToken(xlength uint32, xoffset uint32) token {
    	return token(matchType + xlength<<lengthShift + xoffset)
    }
    
    // Returns the literal of a literal token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kubeadm/app/cmd/options/token.go

    }
    
    // AddTTLFlagWithName adds the --token-ttl flag with a custom flag name given flagset
    func (bto *BootstrapTokenOptions) AddTTLFlagWithName(fs *pflag.FlagSet, flagName string) {
    	fs.DurationVar(
    		&bto.TTL.Duration, flagName, bto.TTL.Duration,
    		"The duration before the token is automatically deleted (e.g. 1s, 2m, 3h). If set to '0', the token will never expire",
    	)
    }
    
    // AddUsagesFlag adds the --usages flag to the given flagset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. pkg/registry/core/serviceaccount/storage/token.go

    	// Tweak expiration for safe transition of projected service account token.
    	// Warn (instead of fail) after requested expiration time.
    	// Fail after hard-coded extended expiration time.
    	// Only perform the extension when token is pod-bound.
    	var warnAfter int64
    	exp := req.Spec.ExpirationSeconds
    	if r.extendExpiration && pod != nil && req.Spec.ExpirationSeconds == token.WarnOnlyBoundTokenExpirationSeconds && r.isKubeAudiences(req.Spec.Audiences) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/copycerts/copycerts.go

    	}
    	tokens := []bootstraptokenv1.BootstrapToken{{
    		Token:       token,
    		Description: "Proxy for managing TTL for the kubeadm-certs secret",
    		TTL: &metav1.Duration{
    			Duration: kubeadmconstants.DefaultCertTokenDuration,
    		},
    	}}
    
    	if err := nodebootstraptokenphase.CreateNewTokens(client, tokens); err != nil {
    		return "", errors.Wrap(err, "error creating token")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. src/image/png/testdata/invalid-noend.png

    invalid-noend.png...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  9. hack/testdata/auth-tokens.csv

    admin-token,admin,,"system:masters"...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 23:03:15 UTC 2017
    - 36 bytes
    - Viewed (0)
  10. pkg/controller/bootstrap/bootstrapsigner_test.go

    }
    
    func newConfigMap(tokenID, signature string) *v1.ConfigMap {
    	ret := &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace:       metav1.NamespacePublic,
    			Name:            bootstrapapi.ConfigMapClusterInfo,
    			ResourceVersion: "1",
    		},
    		Data: map[string]string{
    			bootstrapapi.KubeConfigKey: "payload",
    		},
    	}
    	if len(tokenID) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top