Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,750 for tokEnd (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultCancellationTokenSourceTest.groovy

        def 'token operation idempotent'() {
            when:
            def token1 = source.token()
            def token2 = source.token()
    
            then:
            token1 == token2
        }
    
        def 'can unpack token'() {
            expect:
            source.token().token != null
        }
    
        def 'can cancel'() {
            expect:
            !source.token().cancellationRequested
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/caclient/providers/citadel/testdata/token

    Zhonghu Xu <******@****.***> 1660661797 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 16 14:56:37 UTC 2022
    - 5 bytes
    - Viewed (0)
  7. cni/test/testdata/k8s_svcacct/token

    John Howard <******@****.***> 1605827959 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 860 bytes
    - Viewed (0)
  8. pkg/istio-agent/testdata/token

    John Howard <******@****.***> 1610044937 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 07 18:42:17 UTC 2021
    - 4 bytes
    - Viewed (0)
  9. pkg/controller/bootstrap/bootstrapsigner.go

    			tokenID := strings.TrimPrefix(key, bootstrapapi.JWSSignatureKeyPrefix)
    			sigs[tokenID] = value
    			delete(newCM.Data, key)
    		}
    	}
    
    	// Now recompute signatures and store them on the new map
    	tokens := e.getTokens(ctx)
    	for tokenID, tokenValue := range tokens {
    		sig, err := jws.ComputeDetachedSignature(content, tokenID, tokenValue)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. 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)
Back to top