本文整理匯總了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())