Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 147 for preemption (0.2 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    }
    
    // isUnsafePoint returns whether p is an unsafe point.
    func (c *ctxt0) isUnsafePoint(p *obj.Prog) bool {
    	// If p explicitly uses REGTMP, it's unsafe to preempt, because the
    	// preemption sequence clobbers REGTMP.
    	return p.From.Reg == REGTMP || p.To.Reg == REGTMP || p.Reg == REGTMP
    }
    
    // isRestartable returns whether p is a multi-instruction sequence that,
    // if preempted, can be restarted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    - A terminating pod on a node that is not caused by preemption no longer prevents `kube-scheduler` from preempting pods on that node
      - Rename `PreemptionByKubeScheduler` to `PreemptionByScheduler` ([#114623](https://github.com/kubernetes/kubernetes/pull/114623), [@Huang-Wei](https://github.com/Huang-Wei))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    	p.Spec.InitContainers = append(p.Spec.InitContainers, MakeContainer().Name(name).Image(imageutils.GetPauseImageName()).Resources(resMap).Obj())
    	return p
    }
    
    // PreemptionPolicy sets the give preemption policy to the inner pod.
    func (p *PodWrapper) PreemptionPolicy(policy v1.PreemptionPolicy) *PodWrapper {
    	p.Spec.PreemptionPolicy = &policy
    	return p
    }
    
    // Overhead sets the give ResourceList to the inner pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - A customizable `OrderedScoreFuncs()` function was introduced. Out-of-tree plugins 
      that used the scheduler's preemption interface could implement this function
      for custom preemption preferences or return nil to keep the current behavior. ([#121867](https://github.com/kubernetes/kubernetes/pull/121867), [@lianghao208](https://github.com/lianghao208))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/obj9.go

    	}
    	p.To.Type = obj.TYPE_REG
    	p.To.Reg = REG_R22
    
    	// Mark the stack bound check and morestack call async nonpreemptible.
    	// If we get preempted here, when resumed the preemption request is
    	// cleared, but we'll still call morestack, which will double the stack
    	// unnecessarily. See issue #35470.
    	p = c.ctxt.StartUnsafePoint(p, c.newprog)
    
    	var q *obj.Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    creation of PriorityClasses ([user doc](https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/))([design doc](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/scheduling/pod-priority-api.md))
    
    * [alpha] This version now supports priority-based preemption of pods ([user doc](https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/))([design doc](https://github.com/kubernetes/community/blob/master/contributors/design-propos...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/obj6.go

    		if cursym.CFunc() {
    			p.To.Offset = 3 * int64(ctxt.Arch.PtrSize) // G.stackguard1
    		}
    
    		// Mark the stack bound check and morestack call async nonpreemptible.
    		// If we get preempted here, when resumed the preemption request is
    		// cleared, but we'll still call morestack, which will double the stack
    		// unnecessarily. See issue #35470.
    		p = ctxt.StartUnsafePoint(p, newprog)
    	} else if framesize <= abi.StackBig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  8. src/runtime/export_test.go

    }
    
    var alwaysFalse bool
    var escapeSink any
    
    func Escape[T any](x T) T {
    	if alwaysFalse {
    		escapeSink = x
    	}
    	return x
    }
    
    // Acquirem blocks preemption.
    func Acquirem() {
    	acquirem()
    }
    
    func Releasem() {
    	releasem(getg().m)
    }
    
    var Timediv = timediv
    
    type PIController struct {
    	piController
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    categorizes them as rejected via `UnschedulableAndUnresolvable`. Consequently, these nodes are excluded from the candidates for the preemption process. Additionally, this update corrects how the scheduling framework handles the Unschedulable status from PreFilter. Previously, if PreFilter returned `Unschedulable`, it could lead to an unexpected abortion in the preemption process, which shouldn't occur in the default scheduler but might occur in schedulers with custom plugins. ([#119779](https://git...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. 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)
Back to top