Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for goofy (0.03 sec)

  1. pkg/monitoring/monitoring_test.go

    	kind = monitoring.CreateLabel("kind")
    
    	testSum = monitoring.NewSum(
    		"events_total",
    		"Number of events observed, by name and kind",
    	)
    
    	goofySum = testSum.With(kind.Value("goofy"))
    
    	hookSum = monitoring.NewSum(
    		"hook_total",
    		"Number of hook events observed",
    	)
    
    	testDistribution = monitoring.NewDistribution(
    		"test_buckets",
    		"Testing distribution functionality",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	}
    	return nil, false
    }
    
    func AllValidSigningAlgorithms() []string {
    	return sets.List(sets.KeySet(allowedSigningAlgs))
    }
    
    // allowlist of signing algorithms to ensure users don't mistakenly pass something goofy.
    var allowedSigningAlgs = map[string]bool{
    	oidc.RS256: true,
    	oidc.RS384: true,
    	oidc.RS512: true,
    	oidc.ES256: true,
    	oidc.ES384: true,
    	oidc.ES512: true,
    	oidc.PS256: true,
    	oidc.PS384: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top