Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for takeRemainingCPUs (0.25 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    			continue
    		}
    		klog.V(4).InfoS("takeFullCores: claiming core", "core", core)
    		a.take(cpusInCore)
    	}
    }
    
    func (a *cpuAccumulator) takeRemainingCPUs() {
    	for _, cpu := range a.sortAvailableCPUs() {
    		klog.V(4).InfoS("takeRemainingCPUs: claiming CPU", "cpu", cpu)
    		a.take(cpuset.New(cpu))
    		if a.isSatisfied() {
    			return
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top