Godep update for docker plugingetter pkg

Signed-off-by: Santhosh Manohar <santhosh@docker.com>
This commit is contained in:
Santhosh Manohar 2017-01-10 13:11:48 -08:00
parent 56aa6f94b3
commit 3178e13246
2 changed files with 8 additions and 8 deletions

View File

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

View File

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