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


Golang LinuxContainer.Run方法代碼示例

本文整理匯總了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)
開發者ID:guanglinlv,項目名稱:garden-linux,代碼行數:32,代碼來源:running_test.go

示例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())
開發者ID:nagyistoce,項目名稱:garden-linux,代碼行數:31,代碼來源:snapshotting_test.go


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