Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for preemption (0.2 sec)

  1. src/runtime/proc.go

    	// already.
    	if sched.nmspinning.Load() != 0 || !sched.nmspinning.CompareAndSwap(0, 1) {
    		return
    	}
    
    	// Disable preemption until ownership of pp transfers to the next M in
    	// startm. Otherwise preemption here would leave pp stuck waiting to
    	// enter _Pgcstop.
    	//
    	// See preemption comment on acquirem in startm for more details.
    	mp := acquirem()
    
    	var pp *p
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    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: Tue Feb 20 15:45:02 UTC 2024
    - 229.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/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    		enableNodeInclusionPolicy bool
    	}{
    		{
    			// A high priority pod may not be scheduled due to node taints or resource shortage.
    			// So preemption is triggered.
    			name: "one spreadConstraint on zone, topologyKeyToMinPodsMap unchanged",
    			preemptor: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/internal/obj/arm64/asm7.go

    		}
    	}
    }
    
    // isUnsafePoint returns whether p is an unsafe point.
    func (c *ctxt7) 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 ||
    		p.From.Type == obj.TYPE_REGREG && p.From.Offset == REGTMP ||
    		p.To.Type == obj.TYPE_REGREG && p.To.Offset == REGTMP
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    e/volumes/. volumeMounts: [] # Configure this to a higher priority class in order to make sure your Istio gateway pods # will not be killed because of low priority class. # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass # for more detail. priorityClassName: "" manifests/charts/gateway/values.schema.json { "$schema": "http://json-schema.org/schema#", "type": "object", "additionalProperties": false, "properties": { "global": { "type": "object" }, "affinity":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

              assertThat(response.request.url.host).isEqualTo("android.com")
              val challenges = response.challenges()
              assertThat(challenges[0].scheme).isEqualTo("OkHttp-Preemptive")
              response.request.newBuilder()
                .header("Proxy-Authorization", credential)
                .build()
            }
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

              },
              "preemptionPolicy": {
                "description": "preemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.",
                "type": "string"
              },
              "value": {
                "default": 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
Back to top