Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for lives (0.05 sec)

  1. pkg/proxy/healthcheck/healthcheck_test.go

    	hs.SyncNode(makeNode(tweakDeleted()))
    	testHTTPHandler(hsTest, http.StatusOK, t)
    }
    
    type url string
    
    var (
    	healthzURL url = "/healthz"
    	livezURL   url = "/livez"
    )
    
    func testProxierHealthUpdater(hs *ProxierHealthServer, hsTest *serverTest, fakeClock *testingclock.FakeClock, t *testing.T) {
    	// Should return 200 "OK" by default.
    	testHTTPHandler(hsTest, http.StatusOK, t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

        exit 1
      fi
    fi
    
    # Enable GCE Alpha features.
    if [[ -n "${GCE_ALPHA_FEATURES:-}" ]]; then
      PROVIDER_VARS="${PROVIDER_VARS:-} GCE_ALPHA_FEATURES"
    fi
    
    # Disable Docker live-restore.
    if [[ -n "${DISABLE_DOCKER_LIVE_RESTORE:-}" ]]; then
      PROVIDER_VARS="${PROVIDER_VARS:-} DISABLE_DOCKER_LIVE_RESTORE"
    fi
    
    # Override default GLBC image
    if [[ -n "${GCE_GLBC_IMAGE:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    // the compactor is stopped.
    func startCompactorOnce(c storagebackend.TransportConfig, interval time.Duration) (func(), error) {
    	compactorsMu.Lock()
    	defer compactorsMu.Unlock()
    
    	key := fmt.Sprintf("%v", c) // gives: {[server1 server2] keyFile certFile caFile}
    	if compactor, foundBefore := compactors[key]; !foundBefore || compactor.interval > interval {
    		compactorClient, err := newETCD3Client(c)
    		if err != nil {
    			return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"imagePullPolicy":          "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. cluster/gce/windows/smoke-test.sh

      # curl-ing the metrics-server service results in a ServerProtocolViolation
      # ("The server committed a protocol violation. Section=ResponseStatusLine")
      # exception. Since we don't care about what the metrics-server actually gives
      # back to us, just that we can reach it, we check that we get the expected
      # exception code and not some other exception code.
      # TODO: it might be less fragile to check that we don't get the "Unable to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. pkg/features/kube_features.go

    // To add a new feature, define a key for it above and add it here. The features will be
    // available throughout Kubernetes binaries.
    //
    // Entries are separated from each other with blank lines to avoid sweeping gofmt changes
    // when adding or removing one entry.
    var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	}
    
    	s, ok := c.(*preScoreState)
    	if !ok {
    		return nil, fmt.Errorf("%+v convert to tainttoleration.preScoreState error", c)
    	}
    	return s, nil
    }
    
    // CountIntolerableTaintsPreferNoSchedule gives the count of intolerable taints of a pod with effect PreferNoSchedule
    func countIntolerableTaintsPreferNoSchedule(taints []v1.Taint, tolerations []v1.Toleration) (intolerableTaints int) {
    	for _, taint := range taints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. pkg/controller/resourceclaim/controller.go

    		return nil, fmt.Errorf("could not initialize ResourceClaim controller: %w", err)
    	}
    	ec.claimCache = cache.NewIntegerResourceVersionMutationCache(claimInformerCache, claimInformerCache,
    		// Very long time to live, unlikely to be needed because
    		// the informer cache should get updated soon.
    		time.Hour,
    		// Allow storing objects not in the underlying cache - that's the point...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one.go

    	} else {
    		// In the case of extender, the pod may have been bound successfully, but timed out returning its response to the scheduler.
    		// It could result in the live version to carry .spec.nodeName, and that's inconsistent with the internal-queued version.
    		if len(cachedPod.Spec.NodeName) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/controllermanager.go

    	// ClientBuilder will provide a client for this controller to use
    	ClientBuilder clientbuilder.ControllerClientBuilder
    
    	// InformerFactory gives access to informers for the controller.
    	InformerFactory informers.SharedInformerFactory
    
    	// ObjectOrMetadataInformerFactory gives access to informers for typed resources
    	// and dynamic resources by their metadata. All generic controllers currently use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top