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


Golang arvadostest.StopAPI函數代碼示例

本文整理匯總了Golang中git/curoverse/com/arvados/git/sdk/go/arvadostest.StopAPI函數的典型用法代碼示例。如果您正苦於以下問題:Golang StopAPI函數的具體用法?Golang StopAPI怎麽用?Golang StopAPI使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了StopAPI函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: TearDownSuite

func (s *ServerRequiredSuite) TearDownSuite(c *C) {
	if *no_server {
		return
	}
	arvadostest.StopKeep()
	arvadostest.StopAPI()
}
開發者ID:WangZhenfei,項目名稱:arvados,代碼行數:7,代碼來源:keepclient_test.go

示例2: TearDownSuite

func (s *integrationSuite) TearDownSuite(c *check.C) {
	if testing.Short() {
		c.Skip("-short")
	}
	arvadostest.StopKeep(4)
	arvadostest.StopAPI()
}
開發者ID:pombredanne,項目名稱:arvados,代碼行數:7,代碼來源:integration_test.go

示例3: TestPullWorkerIntegration_GetExistingLocator

// Do a get on a block that exists on one of the keep servers.
// The setup method will create this block before doing the get.
func TestPullWorkerIntegration_GetExistingLocator(t *testing.T) {
	testData := PullWorkIntegrationTestData{
		Name:     "TestPullWorkerIntegration_GetLocator",
		Locator:  "5d41402abc4b2a76b9719d911017c592",
		Content:  "hello",
		GetError: "",
	}

	pullRequest := SetupPullWorkerIntegrationTest(t, testData, true)
	defer arvadostest.StopAPI()
	defer arvadostest.StopKeep(2)

	performPullWorkerIntegrationTest(testData, pullRequest, t)
}
開發者ID:pombredanne,項目名稱:arvados,代碼行數:16,代碼來源:pull_worker_integration_test.go

示例4: TearDownDataManagerTest

func TearDownDataManagerTest(t *testing.T) {
	arvadostest.StopKeep(2)
	arvadostest.StopAPI()
	summary.WriteDataTo = ""
	collection.HeapProfileFilename = ""
}
開發者ID:aflyhorse,項目名稱:arvados,代碼行數:6,代碼來源:datamanager_test.go

示例5: TearDownSuite

func (s *IntegrationSuite) TearDownSuite(c *check.C) {
	arvadostest.StopKeep(2)
	arvadostest.StopAPI()
}
開發者ID:pombredanne,項目名稱:arvados,代碼行數:4,代碼來源:server_test.go

示例6: TearDownSuite

func (s *NoKeepServerSuite) TearDownSuite(c *C) {
	arvadostest.StopAPI()
}
開發者ID:Kunde21,項目名稱:arvados,代碼行數:3,代碼來源:keepproxy_test.go

示例7: TearDownSuite

func (s *ServerRequiredSuite) TearDownSuite(c *C) {
	arvadostest.StopAPI()
	arvadostest.ResetEnv()
}
開發者ID:pombredanne,項目名稱:arvados,代碼行數:4,代碼來源:keep-rsync_test.go

示例8: TearDownDataManagerTest

func TearDownDataManagerTest(t *testing.T) {
	arvadostest.StopKeep()
	arvadostest.StopAPI()
}
開發者ID:brainstorm,項目名稱:arvados,代碼行數:4,代碼來源:datamanager_test.go

示例9: TearDownSuite

func (s *TestSuite) TearDownSuite(c *C) {
	arvadostest.StopAPI()
}
開發者ID:pombredanne,項目名稱:arvados,代碼行數:3,代碼來源:crunch-dispatch-local_test.go

示例10: TearDownTest

func (s *TestSuite) TearDownTest(c *C) {
	os.Args = initialArgs
	arvadostest.StopAPI()
}
開發者ID:pombredanne,項目名稱:arvados,代碼行數:4,代碼來源:crunch-dispatch-slurm_test.go


注:本文中的git/curoverse/com/arvados/git/sdk/go/arvadostest.StopAPI函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。