本文整理汇总了Golang中github.com/juju/juju/constraints.Value.CpuCores方法的典型用法代码示例。如果您正苦于以下问题:Golang Value.CpuCores方法的具体用法?Golang Value.CpuCores怎么用?Golang Value.CpuCores使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/juju/juju/constraints.Value
的用法示例。
在下文中一共展示了Value.CpuCores方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: constraints
func (i *importer) constraints(cons description.Constraints) constraints.Value {
var result constraints.Value
if cons == nil {
return result
}
if arch := cons.Architecture(); arch != "" {
result.Arch = &arch
}
if container := instance.ContainerType(cons.Container()); container != "" {
result.Container = &container
}
if cores := cons.CpuCores(); cores != 0 {
result.CpuCores = &cores
}
if power := cons.CpuPower(); power != 0 {
result.CpuPower = &power
}
if inst := cons.InstanceType(); inst != "" {
result.InstanceType = &inst
}
if mem := cons.Memory(); mem != 0 {
result.Mem = &mem
}
if disk := cons.RootDisk(); disk != 0 {
result.RootDisk = &disk
}
if spaces := cons.Spaces(); len(spaces) > 0 {
result.Spaces = &spaces
}
if tags := cons.Tags(); len(tags) > 0 {
result.Tags = &tags
}
return result
}
示例2: TestConstraints
func (s *constraintsSuite) TestConstraints(c *gc.C) {
for i, t := range newConstraintTests {
var cv constraints.Value
if t.arch != nil {
cv.Arch = &t.arch.v
}
if t.cores != nil {
cv.CpuCores = &t.cores.v
}
if t.power != nil {
cv.CpuPower = &t.power.v
}
if t.mem != nil {
cv.Mem = &t.mem.v
}
if t.disk != nil {
cv.RootDisk = &t.disk.v
}
v := newConstraints(t.bootstrap, cv, img)
if !c.Check(*v, gc.Equals, t.expected) {
c.Logf("test (%d): %+v", i, t)
}
}
}