Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for initEnv (0.09 sec)

  1. src/cmd/go/internal/cache/cache.go

    // DebugTest is set when GODEBUG=gocachetest=1 is in the environment.
    var DebugTest = false
    
    func init() { initEnv() }
    
    var (
    	gocacheverify = godebug.New("gocacheverify")
    	gocachehash   = godebug.New("gocachehash")
    	gocachetest   = godebug.New("gocachetest")
    )
    
    func initEnv() {
    	if gocacheverify.Value() == "1" {
    		gocacheverify.IncNonDefault()
    		verify = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. pkg/dns/client/dns_test.go

    	dnsProto "istio.io/istio/pkg/dns/proto"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestDNSForwardParallel(t *testing.T) {
    	d := initDNS(t, true)
    	testDNS(t, d)
    }
    
    func TestDNS(t *testing.T) {
    	d := initDNS(t, false)
    	testDNS(t, d)
    }
    
    func TestBuildAlternateHosts(t *testing.T) {
    	// Create the server instance without starting it, as it's unnecessary for this test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	t := &asyncIDTokenVerifier{}
    
    	sync := make(chan struct{})
    	// Polls indefinitely in an attempt to initialize the distributed claims
    	// verifier, or until context canceled.
    	initFn := func(ctx context.Context) (done bool, err error) {
    		klog.V(4).Infof("oidc authenticator: attempting init: iss=%v", iss)
    		v, err := initVerifier(ctx, c, iss, audiences)
    		if err != nil {
    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