本文整理汇总了Golang中github.com/cloudfoundry-incubator/garden-linux/linux_container.LinuxContainer.Run方法的典型用法代码示例。如果您正苦于以下问题:Golang LinuxContainer.Run方法的具体用法?Golang LinuxContainer.Run怎么用?Golang LinuxContainer.Run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/garden-linux/linux_container.LinuxContainer
的用法示例。
在下文中一共展示了LinuxContainer.Run方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
)
})
Describe("Running", func() {
It("runs the /bin/bash via wsh with the given script as the input, and rlimits in env", func() {
_, err := container.Run(garden.ProcessSpec{
User: "alice",
Path: "/some/script",
Args: []string{"arg1", "arg2"},
Limits: garden.ResourceLimits{
As: uint64ptr(1),
Core: uint64ptr(2),
Cpu: uint64ptr(3),
Data: uint64ptr(4),
Fsize: uint64ptr(5),
Locks: uint64ptr(6),
Memlock: uint64ptr(7),
Msgqueue: uint64ptr(8),
Nice: uint64ptr(9),
Nofile: uint64ptr(10),
Nproc: uint64ptr(11),
Rss: uint64ptr(12),
Rtprio: uint64ptr(13),
Sigpending: uint64ptr(14),
Stack: uint64ptr(15),
},
}, garden.ProcessIO{})
Expect(err).ToNot(HaveOccurred())
Expect(fakeProcessTracker.RunCallCount()).To(Equal(1))
_, ranCmd, _, _, _ := fakeProcessTracker.RunArgsForCall(0)
示例2:
Processes: []linux_backend.ActiveProcess{
{
ID: 0,
TTY: false,
},
{
ID: 5,
TTY: true,
},
},
})
Expect(err).ToNot(HaveOccurred())
_, err = container.Run(garden.ProcessSpec{
User: "alice",
Path: "/some/script",
}, garden.ProcessIO{})
Expect(err).ToNot(HaveOccurred())
nextGuid, _, _, _, _ := fakeProcessTracker.RunArgsForCall(0)
nextId, _ := strconv.Atoi(nextGuid)
Expect(nextId).To(BeNumerically(">", 5))
})
It("restores the correct process signaller", func() {
Expect(container.Restore(linux_backend.LinuxContainerSpec{
State: "active",
Processes: []linux_backend.ActiveProcess{{ID: 0, TTY: false}},
Resources: containerResources,
})).To(Succeed())