io.cattle.platform.core.model.Instance.getMemoryReservation()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(202)

本文整理了Java中io.cattle.platform.core.model.Instance.getMemoryReservation()方法的一些代码示例,展示了Instance.getMemoryReservation()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Instance.getMemoryReservation()方法的具体详情如下:
包路径:io.cattle.platform.core.model.Instance
类名称:Instance
方法名:getMemoryReservation

Instance.getMemoryReservation介绍

[英]Getter for cattle.instance.memory_reservation.
[中]cattle.instance.memory_reservation的Getter。

代码示例

代码示例来源:origin: rancher/cattle

this.start_count = instance.getStartCount();
this.state = instance.getState();
this.memory_reservation = instance.getMemoryReservation();
this.milli_cpu_reservation = instance.getMilliCpuReservation();
if (instance.getDnsInternal() != null) {

代码示例来源:origin: rancher/cattle

return new ComputeResourceRequest(INSTANCE_RESERVATION, 1l, poolType);
case MEMORY_RESERVATION:
  if (instance.getMemoryReservation() != null && instance.getMemoryReservation() > 0) {
    ResourceRequest rr = new ComputeResourceRequest(MEMORY_RESERVATION, instance.getMemoryReservation(), poolType);
    return rr;

代码示例来源:origin: rancher/cattle

setDnsInternal(from.getDnsInternal());
setDnsSearchInternal(from.getDnsSearchInternal());
setMemoryReservation(from.getMemoryReservation());
setMilliCpuReservation(from.getMilliCpuReservation());
setSystem(from.getSystem());

相关文章