當前位置: 首頁>>代碼示例>>Golang>>正文


Golang ResourceList.Cpu方法代碼示例

本文整理匯總了Golang中github.com/GoogleCloudPlatform/kubernetes/pkg/api.ResourceList.Cpu方法的典型用法代碼示例。如果您正苦於以下問題:Golang ResourceList.Cpu方法的具體用法?Golang ResourceList.Cpu怎麽用?Golang ResourceList.Cpu使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/GoogleCloudPlatform/kubernetes/pkg/api.ResourceList的用法示例。


在下文中一共展示了ResourceList.Cpu方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: getNonzeroLimits

// TODO: Consider setting default as a fixed fraction of machine capacity (take "capacity api.ResourceList"
// as an additional argument here) rather than using constants
func getNonzeroLimits(limits *api.ResourceList) (int64, int64) {
	var out_millicpu, out_memory int64
	// Override if un-set, but not if explicitly set to zero
	if (*limits.Cpu() == resource.Quantity{}) {
		out_millicpu = defaultMilliCpuLimit
	} else {
		out_millicpu = limits.Cpu().MilliValue()
	}
	// Override if un-set, but not if explicitly set to zero
	if (*limits.Memory() == resource.Quantity{}) {
		out_memory = defaultMemoryLimit
	} else {
		out_memory = limits.Memory().Value()
	}
	return out_millicpu, out_memory
}
開發者ID:Ima8,項目名稱:kubernetes,代碼行數:18,代碼來源:priorities.go

示例2: CheckPodsExceedingCapacity

func CheckPodsExceedingCapacity(pods []*api.Pod, capacity api.ResourceList) (fitting []*api.Pod, notFitting []*api.Pod) {
	totalMilliCPU := capacity.Cpu().MilliValue()
	totalMemory := capacity.Memory().Value()
	milliCPURequested := int64(0)
	memoryRequested := int64(0)
	for _, pod := range pods {
		podRequest := getResourceRequest(pod)
		fitsCPU := totalMilliCPU == 0 || (totalMilliCPU-milliCPURequested) >= podRequest.milliCPU
		fitsMemory := totalMemory == 0 || (totalMemory-memoryRequested) >= podRequest.memory
		if !fitsCPU || !fitsMemory {
			// the pod doesn't fit
			notFitting = append(notFitting, pod)
			continue
		}
		// the pod fits
		milliCPURequested += podRequest.milliCPU
		memoryRequested += podRequest.memory
		fitting = append(fitting, pod)
	}
	return
}
開發者ID:chenzhen411,項目名稱:kubernetes,代碼行數:21,代碼來源:predicates.go


注:本文中的github.com/GoogleCloudPlatform/kubernetes/pkg/api.ResourceList.Cpu方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。