Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HavePodsWithAffinityList (0.2 sec)

  1. pkg/scheduler/framework/listers.go

    type NodeInfoLister interface {
    	// List returns the list of NodeInfos.
    	List() ([]*NodeInfo, error)
    	// HavePodsWithAffinityList returns the list of NodeInfos of nodes with pods with affinity terms.
    	HavePodsWithAffinityList() ([]*NodeInfo, error)
    	// HavePodsWithRequiredAntiAffinityList returns the list of NodeInfos of nodes with pods with required anti-affinity terms.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 01:00:41 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/autoscaler_contract/lister_contract_test.go

    type nodeInfoListerContract struct{}
    
    func (c *nodeInfoListerContract) List() ([]*framework.NodeInfo, error) {
    	return nil, nil
    }
    
    func (c *nodeInfoListerContract) HavePodsWithAffinityList() ([]*framework.NodeInfo, error) {
    	return nil, nil
    }
    
    func (c *nodeInfoListerContract) HavePodsWithRequiredAntiAffinityList() ([]*framework.NodeInfo, error) {
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 02:30:08 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/snapshot.go

    // List returns the list of nodes in the snapshot.
    func (s *Snapshot) List() ([]*framework.NodeInfo, error) {
    	return s.nodeInfoList, nil
    }
    
    // HavePodsWithAffinityList returns the list of nodes with at least one pod with inter-pod affinity
    func (s *Snapshot) HavePodsWithAffinityList() ([]*framework.NodeInfo, error) {
    	return s.havePodsWithAffinityNodeInfoList, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top