Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for Gated (0.09 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    	LowThresholdPercent int
    
    	// Minimum age at which an image can be garbage collected.
    	MinAge time.Duration
    
    	// Maximum age after which an image can be garbage collected, regardless of disk usage.
    	// Currently gated by MaximumImageGCAge feature gate and Kubelet configuration.
    	// If 0, the feature is disabled.
    	MaxAge time.Duration
    }
    
    type realImageGCManager struct {
    	// Container runtime
    	runtime container.Runtime
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager.go

    	register(newTTLAfterFinishedControllerDescriptor())
    	register(newRootCACertificatePublisherControllerDescriptor())
    	register(newEphemeralVolumeControllerDescriptor())
    
    	// feature gated
    	register(newStorageVersionGarbageCollectorControllerDescriptor())
    	register(newResourceClaimControllerDescriptor())
    	register(newLegacyServiceAccountTokenCleanerControllerDescriptor())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    			test: "removing node selector is not allowed for gated pods",
    		}, {
    			old: core.Pod{
    				Spec: core.PodSpec{
    					NodeSelector: map[string]string{
    						"foo": "bar",
    					},
    				},
    			},
    			new:  core.Pod{},
    			err:  "Forbidden: pod updates may not change fields other than `spec.containers[*].image",
    			test: "removing node selector is not allowed for non-gated pods",
    		}, {
    			old: core.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    		// If someone writes a function that uses >65K values,
    		// they get incomplete debug info on 32-bit platforms.
    		return
    	}
    	if start == end {
    		if state.loggingLevel > 1 {
    			// Printf not logf so not gated by GOSSAFUNC; this should fire very rarely.
    			// TODO this fires a lot, need to figure out why.
    			state.logf("Skipping empty location list for %v in %s\n", state.vars[varID], state.f.Name)
    		}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Improved scheduling latency when many gated pods ([#124618](https://github.com/kubernetes/kubernetes/pull/124618), [@gabesaba](https://github.com/gabesaba)) [SIG Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

        * In order to safely upgrade an existing Kubernetes cluster without interruption of volume attach/detach logic:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    - Improved scheduling latency when many gated pods ([#124866](https://github.com/kubernetes/kubernetes/pull/124866), [@gabesaba](https://github.com/gabesaba)) [SIG Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.20.md

      clusterIP).  Most users do not need to set anything at all, defaulting will
      handle it for them.  Services are single-stack unless the user asks for
      dual-stack.  This is all gated by the "IPv6DualStack" feature gate. ([#91824](https://github.com/kubernetes/kubernetes/pull/91824), [@khenidak](https://github.com/khenidak)) [SIG API Machinery, Apps, CLI, Network, Node, Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Improved scheduling latency when many gated pods ([#124851](https://github.com/kubernetes/kubernetes/pull/124851), [@gabesaba](https://github.com/gabesaba)) [SIG Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  10. pkg/apis/core/validation/validation.go

    	}
    
    	// Handle validations specific to gated pods.
    	podIsGated := len(oldPod.Spec.SchedulingGates) > 0
    	if podIsGated {
    		// Additions to spec.nodeSelector are allowed (no deletions or mutations) for gated pods.
    		if !apiequality.Semantic.DeepEqual(mungedPodSpec.NodeSelector, oldPod.Spec.NodeSelector) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top