Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateNodeInfoSnapshotList (0.39 sec)

  1. pkg/scheduler/internal/cache/cache.go

    		// error to surface the problem, the error will likely cause a failure to the current scheduling cycle.
    		cache.updateNodeInfoSnapshotList(logger, nodeSnapshot, true)
    		return fmt.Errorf(errMsg)
    	}
    
    	return nil
    }
    
    func (cache *cacheImpl) updateNodeInfoSnapshotList(logger klog.Logger, snapshot *Snapshot, updateAll bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/cache_test.go

    		_, ok := snapshot.nodeInfoMap[nodes[i].Name]
    		if !ok {
    			snapshot.nodeInfoMap[nodes[i].Name] = cache.nodes[nodes[i].Name].info
    		}
    	}
    
    	updateSnapshot := func(t *testing.T) {
    		cache.updateNodeInfoSnapshotList(logger, snapshot, true)
    		if err := compareCacheWithNodeInfoSnapshot(t, cache, snapshot); err != nil {
    			t.Error(err)
    		}
    	}
    
    	tests := []struct {
    		name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top