Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for myuid (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		storage.SimpleUpdate(func(obj runtime.Object) (runtime.Object, error) {
    			pod := obj.(*example.Pod)
    			pod.ObjectMeta.UID = "myUID"
    			return pod, nil
    		}), nil); err != nil {
    		t.Errorf("Unexpected failure during updated: %v", err)
    	}
    
    	prec := storage.NewUIDPreconditions("myUID")
    
    	out := &example.Pod{}
    	if err := store.Delete(ctx, key, out, prec, storage.ValidateAllObjectFunc, originalPod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	if gomaxprocs <= 1 {
    		return
    	}
    	gp := getg()
    	if gp == nil || gp.m == nil || gp.m.p == 0 {
    		return
    	}
    	myID := gp.m.p.ptr().id
    	for tries := 0; tries < 5; tries++ {
    		id := int32(cheaprandn(uint32(gomaxprocs - 1)))
    		if id >= myID {
    			id++
    		}
    		p := allp[id]
    		if p.status != _Prunning {
    			continue
    		}
    		if preemptone(p) {
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top