Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewBalancedAllocation (0.17 sec)

  1. pkg/scheduler/framework/plugins/noderesources/balanced_allocation.go

    }
    
    // ScoreExtensions of the Score plugin.
    func (ba *BalancedAllocation) ScoreExtensions() framework.ScoreExtensions {
    	return nil
    }
    
    // NewBalancedAllocation initializes a new plugin and returns it.
    func NewBalancedAllocation(_ context.Context, baArgs runtime.Object, h framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	args, ok := baArgs.(*config.NodeResourcesBalancedAllocationArgs)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/registry.go

    		noderesources.Name:                   runtime.FactoryAdapter(fts, noderesources.NewFit),
    		noderesources.BalancedAllocationName: runtime.FactoryAdapter(fts, noderesources.NewBalancedAllocation),
    		volumebinding.Name:                   runtime.FactoryAdapter(fts, volumebinding.New),
    		volumerestrictions.Name:              runtime.FactoryAdapter(fts, volumerestrictions.New),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top