Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for casgstatus (0.24 sec)

  1. src/runtime/mgcmark.go

    				return
    			}
    			if gp.gcscandone {
    				throw("g already scanned")
    			}
    			workDone += scanstack(gp, gcw)
    			gp.gcscandone = true
    			resumeG(stopped)
    
    			if selfScan {
    				casgstatus(userG, _Gwaiting, _Grunning)
    			}
    		})
    	}
    	if workCounter != nil && workDone != 0 {
    		workCounter.Add(workDone)
    		if flushBgCredit {
    			gcFlushBgCredit(workDone)
    		}
    	}
    	return workDone
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    			gcw.dispose()
    			endCheckmarks()
    		}
    
    		// marking is complete so we can turn the write barrier off
    		setGCPhase(_GCoff)
    		stwSwept = gcSweep(work.mode)
    	})
    
    	mp.traceback = 0
    	casgstatus(curgp, _Gwaiting, _Grunning)
    
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GCDone()
    		traceRelease(trace)
    	}
    
    	// all done
    	mp.preemptoff = ""
    
    	if gcphase != _GCoff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    			return nil, now
    		}
    		// Run a fractional worker.
    		pp.gcMarkWorkerMode = gcMarkWorkerFractionalMode
    	}
    
    	// Run the background mark worker.
    	gp := node.gp.ptr()
    	trace := traceAcquire()
    	casgstatus(gp, _Gwaiting, _Grunnable)
    	if trace.ok() {
    		trace.GoUnpark(gp, 0)
    		traceRelease(trace)
    	}
    	return gp, now
    }
    
    // resetLive sets up the controller state for the next mark phase after the end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	require.NoError(t, err)
    
    	// Creating a pair reference pod and status for the test cases to refer
    	// the specific fields.
    	basePod, baseStatus := makeBasePodAndStatus()
    	noAction := podActions{
    		SandboxID:         baseStatus.SandboxStatuses[0].Id,
    		ContainersToStart: []int{},
    		ContainersToKill:  map[kubecontainer.ContainerID]containerToKillInfo{},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    }
    
    var xxx_messageInfo_CarpSpec proto.InternalMessageInfo
    
    func (m *CarpStatus) Reset()      { *m = CarpStatus{} }
    func (*CarpStatus) ProtoMessage() {}
    func (*CarpStatus) Descriptor() ([]byte, []int) {
    	return fileDescriptor_83e19b543dd132db, []int{4}
    }
    func (m *CarpStatus) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CarpStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    				// So we need to execute all PreFilter.
    				// https://github.com/kubernetes/kubernetes/issues/119770
    				returnStatus = s
    				continue
    			}
    			return nil, framework.AsStatus(fmt.Errorf("running PreFilter plugin %q: %w", pl.Name(), s.AsError())).WithPlugin(pl.Name())
    		}
    		if !r.AllNodes() {
    			pluginsWithNodes = append(pluginsWithNodes, pl.Name())
    		}
    		result = result.Merge(r)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			objs:    []apiruntime.Object{claimParameters, classParameters, st.FromClassParameters(classParameters).Name("other").Obj() /* too many */, workerNodeSlice},
    			want: want{
    				prefilter: result{
    					status: framework.AsStatus(errors.New(`multiple generated class parameters for ResourceClassParameters.example.com my-resource-class found: [default/my-resource-class default/other]`)),
    				},
    				postfilter: result{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    		return framework.AsStatus(fmt.Errorf("failed to add pod: %v", podToSchedule.Name))
    	}
    	return nil
    }
    
    func (pl *TestPlugin) RemovePod(ctx context.Context, state *framework.CycleState, podToSchedule *v1.Pod, podInfoToRemove *framework.PodInfo, nodeInfo *framework.NodeInfo) *framework.Status {
    	if nodeInfo.Node().GetLabels()["error"] == "true" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	cycleState := framework.NewCycleState()
    	gotStatus := p.(framework.FilterPlugin).Filter(ctx, cycleState, pod, nodeInfo)
    	wantStatus := framework.AsStatus(fmt.Errorf(`error reading "PreFilterNodeResourcesFit" from cycleState: %w`, framework.ErrNotFound))
    	if !reflect.DeepEqual(gotStatus, wantStatus) {
    		t.Errorf("status does not match: %v, want: %v", gotStatus, wantStatus)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		helper, loggerV := loggerV.WithCallStackHelper()
    		helper()
    		// nolint: logcheck // warns because it cannot check key/values
    		loggerV.Error(err, "dynamic resource plugin failed", kv...)
    	}
    	return framework.AsStatus(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top