Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nodeScoreList (0.1 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    }
    
    func (pl *TestScoreWithNormalizePlugin) Name() string {
    	return pl.name
    }
    
    func (pl *TestScoreWithNormalizePlugin) NormalizeScore(ctx context.Context, state *framework.CycleState, pod *v1.Pod, scores framework.NodeScoreList) *framework.Status {
    	return injectNormalizeRes(pl.inj, scores)
    }
    
    func (pl *TestScoreWithNormalizePlugin) Score(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName string) (int64, *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    func (pl *reverseNumericMapPlugin) ScoreExtensions() framework.ScoreExtensions {
    	return pl
    }
    
    func (pl *reverseNumericMapPlugin) NormalizeScore(_ context.Context, _ *framework.CycleState, _ *v1.Pod, nodeScores framework.NodeScoreList) *framework.Status {
    	var maxScore float64
    	minScore := math.MaxFloat64
    
    	for _, hostPriority := range nodeScores {
    		maxScore = math.Max(maxScore, float64(hostPriority.Score))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top