Home
last modified time | relevance | path

Searched refs:CycleState (Results 1 – 25 of 202) sorted by relevance

123456789

/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/
H A Dinterface.go337 PreFilter(ctx context.Context, state *CycleState, p *v1.Pod) *Status argument
367 Filter(ctx context.Context, state *CycleState, pod *v1.Pod, nodeInfo *NodeInfo) *Status argument
396 PreScore(ctx context.Context, state *CycleState, pod *v1.Pod, nodes []*v1.Node) *Status argument
431 Reserve(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) *Status argument
437 Unreserve(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) argument
446 PreBind(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) *Status argument
457 PostBind(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) argument
483 Bind(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) *Status argument
497 RunPreFilterPlugins(ctx context.Context, state *CycleState, pod *v1.Pod) *Status argument
630 RunPreScorePlugins(context.Context, *CycleState, *v1.Pod, []*v1.Node) *Status argument
[all …]
H A Dcycle_state.go44 type CycleState struct { struct
52 func NewCycleState() *CycleState {
53 return &CycleState{
59 func (c *CycleState) ShouldRecordPluginMetrics() bool { argument
67 func (c *CycleState) SetRecordPluginMetrics(flag bool) { argument
76 func (c *CycleState) Clone() *CycleState { argument
90 func (c *CycleState) Read(key StateKey) (StateData, error) { argument
101 func (c *CycleState) Write(key StateKey, val StateData) { argument
109 func (c *CycleState) Delete(key StateKey) { argument
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/testing/
H A Dfake_plugins.go43 func (pl *FalseFilterPlugin) Filter(_ context.Context, _ *framework.CycleState, pod *v1.Pod, nodeIn…
61 func (pl *TrueFilterPlugin) Filter(_ context.Context, _ *framework.CycleState, pod *v1.Pod, nodeInf…
83 func (pl *FakeFilterPlugin) Filter(_ context.Context, _ *framework.CycleState, pod *v1.Pod, nodeInf…
112 func (pl *MatchFilterPlugin) Filter(_ context.Context, _ *framework.CycleState, pod *v1.Pod, nodeIn…
139 func (pl *FakePreFilterPlugin) PreFilter(_ context.Context, _ *framework.CycleState, pod *v1.Pod) *…
168 func (pl *FakeReservePlugin) Reserve(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ strin…
173 func (pl *FakeReservePlugin) Unreserve(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ str…
196 func (pl *FakePreBindPlugin) PreBind(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ strin…
221 func (pl *FakePermitPlugin) Permit(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ string)…
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/nodeaffinity/
H A Dnode_affinity.go86 func (pl *NodeAffinity) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Po…
99 func (pl *NodeAffinity) Filter(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeI…
136 func (pl *NodeAffinity) PreScore(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod…
154 func (pl *NodeAffinity) Score(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeNa…
190 func (pl *NodeAffinity) NormalizeScore(ctx context.Context, state *framework.CycleState, pod *v1.Po…
242 func getPreScoreState(cycleState *framework.CycleState) (*preScoreState, error) { argument
255 func getPreFilterState(cycleState *framework.CycleState) (*preFilterState, error) { argument
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/runtime/
H A Dframework.go464 func (f *frameworkImpl) RunPreFilterPlugins(ctx context.Context, state *framework.CycleState, pod *…
498 state *framework.CycleState,
533 state *framework.CycleState,
569 state *framework.CycleState,
696 …rk.Handle, pod *v1.Pod, state *framework.CycleState, nodeInfo *framework.NodeInfo) (bool, *framewo… argument
725 state *framework.CycleState,
854 func (f *frameworkImpl) RunPreBindPlugins(ctx context.Context, state *framework.CycleState, pod *v1…
881 func (f *frameworkImpl) RunBindPlugins(ctx context.Context, state *framework.CycleState, pod *v1.Po…
915 func (f *frameworkImpl) RunPostBindPlugins(ctx context.Context, state *framework.CycleState, pod *v…
968 func (f *frameworkImpl) RunReservePluginsUnreserve(ctx context.Context, state *framework.CycleState
[all …]
H A Dframework_test.go170 func (pl *TestPlugin) PreFilter(ctx context.Context, state *framework.CycleState, p *v1.Pod) *frame…
190 func (pl *TestPlugin) Reserve(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName…
194 func (pl *TestPlugin) Unreserve(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeNa…
197 func (pl *TestPlugin) PreBind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName…
201 func (pl *TestPlugin) PostBind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeNam…
208 func (pl *TestPlugin) Bind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName st…
221 func (pl *TestPreFilterPlugin) PreFilter(ctx context.Context, state *framework.CycleState, p *v1.Po…
246 …lterWithExtensionsPlugin) AddPod(ctx context.Context, state *framework.CycleState, podToSchedule *…
269 func (dp *TestDuplicatePlugin) PreFilter(ctx context.Context, state *framework.CycleState, p *v1.Po…
346 var state = &framework.CycleState{}
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/tainttoleration/
H A Dtaint_toleration.go64 func (pl *TaintToleration) Filter(ctx context.Context, state *framework.CycleState, pod *v1.Pod, no…
107 func (pl *TaintToleration) PreScore(ctx context.Context, cycleState *framework.CycleState, pod *v1.…
119 func getPreScoreState(cycleState *framework.CycleState) (*preScoreState, error) { argument
148 func (pl *TaintToleration) Score(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nod…
165 func (pl *TaintToleration) NormalizeScore(ctx context.Context, _ *framework.CycleState, pod *v1.Pod…
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/examples/stateful/
H A Dstateful.go52 func (mp *MultipointExample) Reserve(ctx context.Context, state *framework.CycleState, pod *v1.Pod,…
62 func (mp *MultipointExample) Unreserve(ctx context.Context, state *framework.CycleState, pod *v1.Po…
73 func (mp *MultipointExample) PreBind(ctx context.Context, state *framework.CycleState, pod *v1.Pod,…
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/examples/multipoint/
H A Dmultipoint.go54 func (mc CommunicatingPlugin) Reserve(ctx context.Context, state *framework.CycleState, pod *v1.Pod…
66 func (mc CommunicatingPlugin) Unreserve(ctx context.Context, state *framework.CycleState, pod *v1.P…
76 func (mc CommunicatingPlugin) PreBind(ctx context.Context, state *framework.CycleState, pod *v1.Pod…
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/volumebinding/
H A Dvolume_binding.go162 func (pl *VolumeBinding) PreFilter(ctx context.Context, state *framework.CycleState, pod *v1.Pod) *…
191 func getStateData(cs *framework.CycleState) (*stateData, error) { argument
218 func (pl *VolumeBinding) Filter(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeInf…
255 func (pl *VolumeBinding) Score(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeName…
290 func (pl *VolumeBinding) Reserve(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeNa…
315 func (pl *VolumeBinding) PreBind(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeNa…
341 func (pl *VolumeBinding) Unreserve(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, node…
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/serviceaffinity/
H A Dservice_affinity.go136 func (pl *ServiceAffinity) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *v1…
158 func (pl *ServiceAffinity) AddPod(ctx context.Context, cycleState *framework.CycleState, podToSched…
179 func (pl *ServiceAffinity) RemovePod(ctx context.Context, cycleState *framework.CycleState, podToSc…
200 func getPreFilterState(cycleState *framework.CycleState) (*preFilterState, error) { argument
264 func (pl *ServiceAffinity) Filter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Po…
304 func (pl *ServiceAffinity) Score(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nod…
341 func (pl *ServiceAffinity) NormalizeScore(ctx context.Context, _ *framework.CycleState, pod *v1.Pod…
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/nodeports/
H A Dnode_ports.go77 func (pl *NodePorts) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod) …
88 func getPreFilterState(cycleState *framework.CycleState) (preFilterState, error) { argument
113 func (pl *NodePorts) Filter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod, nod…
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/podtopologyspread/
H A Dfiltering.go145 func (pl *PodTopologySpread) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *… argument
160 func (pl *PodTopologySpread) AddPod(ctx context.Context, cycleState *framework.CycleState, podToSch… argument
171 func (pl *PodTopologySpread) RemovePod(ctx context.Context, cycleState *framework.CycleState, podTo… argument
182 func getPreFilterState(cycleState *framework.CycleState) (*preFilterState, error) { argument
278 func (pl *PodTopologySpread) Filter(ctx context.Context, cycleState *framework.CycleState, pod *v1.… argument
H A Dscoring.go110 cycleState *framework.CycleState, argument
176 func (pl *PodTopologySpread) Score(ctx context.Context, cycleState *framework.CycleState, pod *v1.P… argument
212 func (pl *PodTopologySpread) NormalizeScore(ctx context.Context, cycleState *framework.CycleState, … argument
258 func getPreScoreState(cycleState *framework.CycleState) (*preScoreState, error) { argument
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/
H A Dgeneric_scheduler.go62 …Schedule(context.Context, []framework.Extender, framework.Framework, *framework.CycleState, *v1.Po… argument
93 …enders []framework.Extender, fwk framework.Framework, state *framework.CycleState, pod *v1.Pod) (r…
193 …ework.Extender, pod *v1.Pod, fwk framework.Framework, state *framework.CycleState, diagnosis frame…
215 …enders []framework.Extender, fwk framework.Framework, state *framework.CycleState, pod *v1.Pod) ([…
269 state *framework.CycleState,
402 state *framework.CycleState, argument
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/noderesources/
H A Dfit.go182 func (f *Fit) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod) *framew…
192 func getPreFilterState(cycleState *framework.CycleState) (*preFilterState, error) { argument
221 func (f *Fit) Filter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod, nodeInfo *…
332 func (f *Fit) Score(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string)…
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/interpodaffinity/
H A Dscoring.go128 cycleState *framework.CycleState, argument
218 func getPreScoreState(cycleState *framework.CycleState) (*preScoreState, error) { argument
235 func (pl *InterPodAffinity) Score(ctx context.Context, cycleState *framework.CycleState, pod *v1.Po… argument
257 func (pl *InterPodAffinity) NormalizeScore(ctx context.Context, cycleState *framework.CycleState, p… argument
H A Dfiltering.go232 func (pl *InterPodAffinity) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *v… argument
279 func (pl *InterPodAffinity) AddPod(ctx context.Context, cycleState *framework.CycleState, podToSche… argument
289 func (pl *InterPodAffinity) RemovePod(ctx context.Context, cycleState *framework.CycleState, podToS… argument
298 func getPreFilterState(cycleState *framework.CycleState) (*preFilterState, error) { argument
374 func (pl *InterPodAffinity) Filter(ctx context.Context, cycleState *framework.CycleState, pod *v1.P… argument
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/selectorspread/
H A Dselector_spread.go83 func (pl *SelectorSpread) Score(ctx context.Context, state *framework.CycleState, pod *v1.Pod, node…
112 func (pl *SelectorSpread) NormalizeScore(ctx context.Context, state *framework.CycleState, pod *v1.…
181 func (pl *SelectorSpread) PreScore(ctx context.Context, cycleState *framework.CycleState, pod *v1.P…
/dports/www/restbed/restbed-4.8/dependency/catch/include/internal/
H A Dcatch_test_case_tracker.h87 enum CycleState { enum
101 CycleState m_runState = NotStarted;
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/framework/plugins/nodelabel/
H A Dnode_label.go93 func (pl *NodeLabel) Filter(ctx context.Context, _ *framework.CycleState, _ *v1.Pod, nodeInfo *fram…
122 func (pl *NodeLabel) Score(ctx context.Context, _ *framework.CycleState, _ *v1.Pod, nodeName string…
/dports/math/e-antic/Catch2-ff349a5/include/internal/
H A Dcatch_test_case_tracker.h103 enum CycleState { enum
116 CycleState m_runState = NotStarted;
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/test/external/catch2/include/internal/
H A Dcatch_test_case_tracker.h103 enum CycleState { enum
116 CycleState m_runState = NotStarted;
/dports/emulators/citra/citra-ac98458e0/externals/catch/include/internal/
H A Dcatch_test_case_tracker.h103 enum CycleState { enum
116 CycleState m_runState = NotStarted;
/dports/emulators/citra-qt5/citra-ac98458e0/externals/catch/include/internal/
H A Dcatch_test_case_tracker.h103 enum CycleState { enum
116 CycleState m_runState = NotStarted;

123456789