Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,113 for Forever (0.24 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    	s, err := NewV1beta1TestServer(serv, serverCert, serverKey, caCert)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer s.Close()
    
    	// Create an authenticator that caches successful responses "forever" (100 days).
    	wh, err := newV1beta1TokenAuthenticator(s.URL, clientCert, clientKey, caCert, 2400*time.Hour, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	testcases := []struct {
    		description string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    	s, err := NewV1beta1TestServer(serv, serverCert, serverKey, caCert)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer s.Close()
    
    	// Create an authorizer that caches successful responses "forever" (100 days).
    	wh, err := newV1beta1Authorizer(s.URL, clientCert, clientKey, caCert, 2400*time.Hour)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/runtime/select.go

    			unlock(&lastc.lock)
    		}
    		lastc = sg.c
    	}
    	if lastc != nil {
    		unlock(&lastc.lock)
    	}
    	return true
    }
    
    func block() {
    	gopark(nil, nil, waitReasonSelectNoCases, traceBlockForever, 1) // forever
    }
    
    // selectgo implements the select statement.
    //
    // cas0 points to an array of type [ncases]scase, and order0 points to
    // an array of type [2*ncases]uint16 where ncases must be <= 65536.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. pkg/credentialprovider/plugin/plugin.go

    	// Use a catch-all timeout of 1 minute for all exec-based plugins, this should leave enough
    	// head room in case a plugin needs to retry a failed request while ensuring an exec plugin
    	// does not run forever. In the future we may want this timeout to be tweakable from the plugin
    	// config file.
    	ctx, cancel := context.WithTimeout(ctx, 1*time.Minute)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/runtime/race.go

    	// This eventually (via __tsan_fini) calls C.exit which has
    	// undefined behavior if called more than once. If the lock is
    	// already held it's assumed that the first caller exits the program
    	// so other calls can hang forever without an issue.
    	lock(&raceFiniLock)
    
    	// __tsan_fini will run C atexit functions and C++ destructors,
    	// which can theoretically call back into Go.
    	// Tell the scheduler we entering external code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    	serv := new(mockV1Service)
    	s, err := NewV1TestServer(serv, serverCert, serverKey, caCert)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer s.Close()
    
    	// Create an authenticator that caches successful responses "forever" (100 days).
    	wh, err := newV1TokenAuthenticator(s.URL, clientCert, clientKey, caCert, 2400*time.Hour, nil, noopAuthenticatorMetrics())
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	testcases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  7. src/net/net_windows_test.go

    	if err != nil {
    		t.Fatalf("recv failed: %v", err)
    	}
    	switch s {
    	case "":
    		// First connection data is received, let's get second connection data.
    	case "abc":
    		// First connection is lost forever, but that is ok.
    		return
    	default:
    		t.Fatalf(`"%s" received from recv, but "" or "abc" expected`, s)
    	}
    
    	// Get second connection data.
    	s, err = recv(ln, false)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. pkg/controller/tainteviction/taint_eviction.go

    	minTolerationTime := getMinTolerationTime(usedTolerations)
    	// getMinTolerationTime returns negative value to denote infinite toleration.
    	if minTolerationTime < 0 {
    		logger.V(4).Info("Current tolerations for pod tolerate forever, cancelling any scheduled deletion", "pod", podNamespacedName.String())
    		tc.cancelWorkWithEvent(logger, podNamespacedName)
    		return
    	}
    
    	startTime := now
    	triggerTime := startTime.Add(minTolerationTime)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/config.go

    		}
    		if p.WorkloadPort == 0 {
    			c.Ports[i].WorkloadPort = portGen.Instance.Next(p.Protocol)
    		}
    	}
    
    	// If readiness probe is not specified by a test, wait a long time
    	// Waiting forever would cause the test to timeout and lose logs
    	if c.ReadinessTimeout == 0 {
    		c.ReadinessTimeout = DefaultReadinessTimeout()
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:     "fooobject",
    			objectTags:     "store+forever=false&factory=true",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top