Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newWithClock (0.14 sec)

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

    func New(authenticator authenticator.Token, cacheErrs bool, successTTL, failureTTL time.Duration) authenticator.Token {
    	return newWithClock(authenticator, cacheErrs, successTTL, failureTTL, clock.RealClock{})
    }
    
    func newWithClock(authenticator authenticator.Token, cacheErrs bool, successTTL, failureTTL time.Duration, clock clock.Clock) authenticator.Token {
    	randomCacheKey := make([]byte, 32)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    		calledWithToken = append(calledWithToken, token)
    		return &authenticator.Response{User: resultUsers[token]}, resultOk, resultErr
    	})
    	fakeClock := testingclock.NewFakeClock(time.Now())
    
    	a := newWithClock(fakeAuth, true, time.Minute, 0, fakeClock)
    
    	calledWithToken, resultUsers, resultOk, resultErr = []string{}, nil, false, nil
    	a.AuthenticateToken(context.Background(), "bad1")
    	a.AuthenticateToken(context.Background(), "bad2")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top