1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/pkg
Madhu Venugopal 8f1b793528 Add a GetAll function that returns only managed plugins supported by V2
The current GetAll handles both V2 and legacy plugins. Also due to the
nature of V1 plugins, it also loads them. This causes problems when
loading is not required. Hence adding an independent API that will
return only the plugins that are loaded using v2 mangaed plugins.

Signed-off-by: Madhu Venugopal <madhu@docker.com>
2016-12-22 10:26:04 -08:00
..
aaparser pkg: return directly without ifs where possible 2016-12-13 22:10:11 +02:00
archive rectify function and variable referred in pkg/archive/changes_linux.go 2016-12-16 14:58:47 +08:00
authorization
broadcaster
chrootarchive Use wrong ApplyLayer in diff_windows.go 2016-12-19 17:21:18 +08:00
devicemapper several function names fixed in devmapper.go 2016-12-21 10:45:28 +08:00
directory
discovery
filenotify
fileutils
fsutils pkg: return directly without ifs where possible 2016-12-13 22:10:11 +02:00
gitutils
graphdb
homedir
httputils duplicated the 2016-12-21 20:16:19 +08:00
idtools pkg: return directly without ifs where possible 2016-12-13 22:10:11 +02:00
integration change minor mistake of spelling 2016-12-20 21:05:19 +08:00
ioutils
jsonlog
jsonmessage
listeners
locker duplicated the 2016-12-21 20:16:19 +08:00
longpath
loopback
mount
namesgenerator
parsers
pidfile pkg: return directly without ifs where possible 2016-12-13 22:10:11 +02:00
platform
plugingetter Add a GetAll function that returns only managed plugins supported by V2 2016-12-22 10:26:04 -08:00
plugins duplicated the 2016-12-21 20:16:19 +08:00
pools
progress
promise
pubsub
random
reexec
registrar
signal
stdcopy
streamformatter
stringid
stringutils change minor mistake of spelling 2016-12-20 21:05:19 +08:00
symlink
sysinfo
system Move process functions to pkg/system 2016-12-12 09:28:41 +01:00
tailfile
tarsum
templates Move templates to pkg/templates 2016-12-12 09:34:03 +01:00
term Windows: Fix crash in docker system prune 2016-12-09 14:23:25 -08:00
testutil Merge pull request #29314 from vdemeester/no-more-utils 2016-12-22 15:21:05 +01:00
tlsconfig
truncindex pkg: return directly without ifs where possible 2016-12-13 22:10:11 +02:00
urlutil
useragent
README.md

pkg/ is a collection of utility packages used by the Docker project without being specific to its internals.

Utility packages are kept separate from the docker core codebase to keep it as small and concise as possible. If some utilities grow larger and their APIs stabilize, they may be moved to their own repository under the Docker organization, to facilitate re-use by other projects. However that is not the priority.

The directory pkg is named after the same directory in the camlistore project. Since Brad is a core Go maintainer, we thought it made sense to copy his methods for organizing Go code :) Thanks Brad!

Because utility packages are small and neatly separated from the rest of the codebase, they are a good place to start for aspiring maintainers and contributors. Get in touch if you want to help maintain them!