فهرست منبع

Godep update for docker plugingetter pkg

Signed-off-by: Santhosh Manohar <santhosh@docker.com>
Santhosh Manohar 8 سال پیش
والد
کامیت
3178e13246

+ 2 - 2
libnetwork/Godeps/Godeps.json

@@ -143,8 +143,8 @@
 		},
 		{
 			"ImportPath": "github.com/docker/docker/pkg/plugingetter",
-			"Comment": "docs-v1.12.0-rc4-2016-07-15-4185-ge4512d2",
-			"Rev": "e4512d264741e83e954a19f9ef5e3cb06c5856b6"
+			"Comment": "docs-v1.12.0-rc4-2016-07-15-1985-g9c96768",
+			"Rev": "9c96768eae4b3a65147b47a55c850c103ab8972d"
 		},
 		{
 			"ImportPath": "github.com/docker/docker/pkg/plugins",

+ 6 - 6
libnetwork/Godeps/_workspace/src/github.com/docker/docker/pkg/plugingetter/getter.go

@@ -3,12 +3,12 @@ package plugingetter
 import "github.com/docker/docker/pkg/plugins"
 
 const (
-	// LOOKUP doesn't update RefCount
-	LOOKUP = 0
-	// ACQUIRE increments RefCount
-	ACQUIRE = 1
-	// RELEASE decrements RefCount
-	RELEASE = -1
+	// Lookup doesn't update RefCount
+	Lookup = 0
+	// Acquire increments RefCount
+	Acquire = 1
+	// Release decrements RefCount
+	Release = -1
 )
 
 // CompatPlugin is an abstraction to handle both v2(new) and v1(legacy) plugins.