Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for preemption (0.27 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue operatorManageWebhooks = 41;
    
      // Specifies the k8s priorityClassName for the istio control plane components.
      //
      // See https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
      string priorityClassName = 27 [deprecated = true];
    
      // Specifies how proxies are configured within Istio.
      ProxyConfig proxy = 28;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    }
    
    func (npm *nominator) deleteNominatedPodIfExistsUnlocked(pod *v1.Pod) {
    	npm.delete(pod)
    }
    
    // AddNominatedPod adds a pod to the nominated pods of the given node.
    // This is called during the preemption process after a node is nominated to run
    // the pod. We update the structure before sending a request to update the pod
    // object to avoid races with the following scheduling cycles.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	"k8s.io/kubernetes/pkg/kubelet/pleg"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager"
    	plugincache "k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    	kubepod "k8s.io/kubernetes/pkg/kubelet/pod"
    	"k8s.io/kubernetes/pkg/kubelet/preemption"
    	"k8s.io/kubernetes/pkg/kubelet/prober"
    	proberesults "k8s.io/kubernetes/pkg/kubelet/prober/results"
    	"k8s.io/kubernetes/pkg/kubelet/runtimeclass"
    	"k8s.io/kubernetes/pkg/kubelet/secret"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// scheduled right away as preemption victims receive their graceful termination periods.
    	// This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide
    	// to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to
    	// give the resources on this node to a higher priority pod that is created after preemption.
    	// +optional
    	NominatedNodeName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    		if s.shouldStop() {
    			break
    		}
    
    		// scavengeQuantum is the amount of memory we try to scavenge
    		// in one go. A smaller value means the scavenger is more responsive
    		// to the scheduler in case of e.g. preemption. A larger value means
    		// that the overheads of scavenging are better amortized, so better
    		// scavenging throughput.
    		//
    		// The current value is chosen assuming a cost of ~10µs/physical page
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/reflect/value.go

    					} else {
    						// Only populate the Ints space on the return path.
    						// This is safe because out is kept alive until the
    						// end of this function, and the return path through
    						// makeFuncStub has no preemption, so these pointers
    						// are always visible to the GC.
    						regs.Ints[st.ireg] = uintptr(v.ptr)
    					}
    				case abiStepFloatReg:
    					// Copy values to "float registers."
    					if v.flag&flagIndir == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    	}
    	s.freeindex = sfreeindex
    	return result
    }
    
    // isFree reports whether the index'th object in s is unallocated.
    //
    // The caller must ensure s.state is mSpanInUse, and there must have
    // been no preemption points since ensuring this (which could allow a
    // GC transition, which would allow the state to change).
    func (s *mspan) isFree(index uintptr) bool {
    	if index < uintptr(s.freeIndexForScan) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// scheduled right away as preemption victims receive their graceful termination periods.
    	// This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide
    	// to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to
    	// give the resources on this node to a higher priority pod that is created after preemption.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. helm-releases/minio-5.2.0.tgz

    deploymentUpdate: type: RollingUpdate maxUnavailable: 0 maxSurge: 100% ## Update strategy for StatefulSets statefulSetUpdate: updateStrategy: RollingUpdate ## Pod priority settings ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ ## priorityClassName: "" ## Pod runtime class name ## ref https://kubernetes.io/docs/concepts/containers/runtime-class/ ## runtimeClassName: "" ## Set default rootUser, rootPassword ## rootUser and rootPassword is generated when not set ## Distributed...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top