MCPcopy Create free account

hub / github.com/fsouza/go-dockerclient / functions

Functions729 in github.com/fsouza/go-dockerclient

↓ 1 callersMethodPingWithContext
PingWithContext pings the docker server The context object can be used to cancel the ping request. See https://goo.gl/wYfgY1 for more details.
client.go:396
↓ 1 callersMethodPruneContainers
PruneContainers deletes containers which are stopped. See https://goo.gl/wnkgDT for more details.
container_prune.go:28
↓ 1 callersMethodPruneImages
PruneImages deletes images which are unused. See https://goo.gl/qfZlbZ for more details.
image.go:762
↓ 1 callersMethodPruneNetworks
PruneNetworks deletes networks which are unused. See https://goo.gl/kX0S9h for more details.
network.go:310
↓ 1 callersMethodPruneVolumes
PruneVolumes deletes volumes which are unused. See https://goo.gl/f9XDem for more details.
volume.go:182
↓ 1 callersMethodPushPlugin
PushPlugin pushes plugin that opts point or returns an error. See https://goo.gl/C4t7Tz for more details.
plugin.go:409
↓ 1 callersMethodRemoveImageExtended
RemoveImageExtended removes an image by its name or ID. Extra params can be passed, see RemoveImageOptions See https://goo.gl/Vd2Pck for more details
image.go:187
↓ 1 callersMethodRemoveNetwork
RemoveNetwork removes a network or returns an error in case of failure. See https://goo.gl/6GugX3 for more details.
network.go:197
↓ 1 callersMethodRenameContainer
RenameContainer updates and existing containers name See https://goo.gl/46inai for more details.
container_rename.go:24
↓ 1 callersMethodResetFailure
ResetFailure removes an expected failure identified by the given id.
testing/server.go:265
↓ 1 callersMethodResetMultiFailures
ResetMultiFailures removes all enqueued failures.
testing/server.go:270
↓ 1 callersMethodResizeContainerTTY
ResizeContainerTTY resizes the terminal to the given height and width. See https://goo.gl/FImjeq for more details.
container_resize.go:12
↓ 1 callersMethodResizeExecTTY
ResizeExecTTY resizes the tty session used by the exec command id. This API is valid only if Tty was specified as part of creating and starting the ex
exec.go:154
↓ 1 callersFunctionRestartOnFailure
RestartOnFailure returns a restart policy that tells the Docker daemon to restart the container on failures, trying at most maxRetry times.
container_restart.go:32
↓ 1 callersFunctionRestartUnlessStopped
RestartUnlessStopped returns a restart policy that tells the Docker daemon to always restart the container except when user has manually stopped the c
container_restart.go:38
↓ 1 callersMethodSearchImages
SearchImages search the docker hub with a specific given term. See https://goo.gl/KLO9IZ for more details.
image.go:704
↓ 1 callersMethodSearchImagesEx
SearchImagesEx search the docker hub with a specific given term and authentication. See https://goo.gl/KLO9IZ for more details.
image.go:720
↓ 1 callersMethodSetBool
SetBool defines a boolean value to the given key.
env.go:42
↓ 1 callersMethodSetHook
SetHook changes the hook function used by the server. The hook function is a function called on every request.
testing/server.go:215
↓ 1 callersMethodSetInt
SetInt defines an integer value to the given key.
env.go:58
↓ 1 callersMethodSetList
SetList stores the given list in the provided key, after serializing it to JSON format.
env.go:120
↓ 1 callersMethodSetTimeout
SetTimeout takes a timeout and applies it to the HTTPClient. It should not be called concurrently with any other Client methods.
client.go:355
↓ 1 callersMethodStartExecNonBlocking
StartExecNonBlocking starts a previously set up exec instance id. If opts.Detach is true, it returns after starting the exec command. Otherwise, it se
exec.go:119
↓ 1 callersMethodUpdateContainer
UpdateContainer updates the container at ID with the options See https://goo.gl/Y6fXUy for more details.
container_update.go:33
↓ 1 callersMethodUploadToContainer
UploadToContainer uploads a tar archive to be extracted to a path in the filesystem of the container. See https://goo.gl/g25o7u for more details.
container_archive.go:26
↓ 1 callersMethodVersionWithContext
VersionWithContext returns version information about the docker server.
misc.go:23
↓ 1 callersMethodWrite
(buf []byte)
testing/server_test.go:2241
↓ 1 callersMethodWrite
(p []byte)
testing/stdcopy.go:29
↓ 1 callersMethodaddListener
(listener chan<- *APIEvents)
event.go:159
↓ 1 callersFunctionaddQueryStringValue
(items url.Values, key string, v reflect.Value)
client.go:958
↓ 1 callersFunctionauthConfigs
authConfigs converts a dockerConfigs map to a AuthConfigurations object.
auth.go:206
↓ 1 callersMethodcallCount
()
client.go:674
↓ 1 callersMethodcloseListeners
()
event.go:186
↓ 1 callersMethodconnectWithRetry
(c *Client, opts EventsOptions)
event.go:291
↓ 1 callersFunctioncopyTLSConfig
this exists to silent an error message in go vet
tls.go:98
↓ 1 callersFunctioncreateTarStream
(srcPath, dockerfilePath string)
tar.go:20
↓ 1 callersFunctiondefaultPooledTransport
defaultPooledTransport returns a new http.Transport with similar default values to http.DefaultTransport. Do not use this for transient transports as
client.go:1131
↓ 1 callersMethodenableEventMonitoring
(c *Client, opts EventsOptions)
event.go:204
↓ 1 callersFunctiongenerateCA
()
internal/testutils/tls.go:99
↓ 1 callersMethodgenerateEvent
()
testing/server.go:1134
↓ 1 callersFunctiongetCredentialsFromHelper
Run and parse the found credential helper
auth.go:366
↓ 1 callersFunctiongetDockerEnv
()
client.go:1089
↓ 1 callersFunctiongetLines
(buf *bytes.Buffer)
integration_test.go:64
↓ 1 callersMethodgetServerAPIVersionString
()
client.go:409
↓ 1 callersFunctionhandleInactivityTimeout
(reader io.ReadCloser, timeout time.Duration, cancelRequest func(), canceled *uint32)
client.go:683
↓ 1 callersFunctionhandleStreamResponse
(resp *http.Response, streamOptions *streamOptions)
client.go:639
↓ 1 callersMethodheaderKey
()
registry_auth.go:9
↓ 1 callersFunctionintegrationCreateContainerOpts
(imageName string, hostConfig *HostConfig)
integration_unix_test.go:11
↓ 1 callersMethodisEmpty
()
registry_auth.go:8
↓ 1 callersFunctionisValidName
isValidName validates configuration objects supported by libnetwork
testing/server.go:1298
↓ 1 callersMethodlisternersCount
()
event.go:194
↓ 1 callersMethodmonitorEvents
(c *Client, opts EventsOptions)
event.go:237
↓ 1 callersFunctionnewStdWriter
newStdWriter creates a new stdWriter that writes to w with the given stream type prefix.
testing/stdcopy.go:22
↓ 1 callersFunctionparseDockerConfig
(r io.Reader)
auth.go:184
↓ 1 callersFunctionparseDockerignore
(root string)
tar.go:113
↓ 1 callersMethodpingDocker
(w http.ResponseWriter, r *http.Request)
testing/server.go:1130
↓ 1 callersFunctionpullImage
(t *testing.T)
integration_test.go:75
↓ 1 callersMethodremoveListener
(listener chan<- *APIEvents)
event.go:170
↓ 1 callersFunctionrunDockerCredentialsHelper
(provider string, registry string)
auth.go:381
↓ 1 callersFunctionrunStreamConnServer
(t *testing.T, network, laddr string, listening chan<- string, done chan<- int, containerID string)
container_unix_test.go:111
↓ 1 callersMethodsendEvent
(event *APIEvents)
event.go:325
↓ 1 callersFunctiontempfile
(filename string)
container_unix_test.go:140
↓ 1 callersFunctiontransformEvent
transformEvent takes an event and determines what version it is from then populates both versions of the event
event.go:427
↓ 1 callersFunctionunpackBodyTarball
(req io.Reader)
build_test.go:153
↓ 1 callersMethodupdateLastSeen
(e *APIEvents)
event.go:345
↓ 1 callersFunctionvalidateContextDirectory
validateContextDirectory checks if all the contents of the directory can be read and returns an error if some files can't be read. Symlinks which poin
tar.go:72
↓ 1 callersMethodversionedAuthConfigs
(authConfigs AuthConfigurations)
image.go:622
MethodClose
()
image_test.go:42
MethodDial
(network, address string)
client_windows.go:25
MethodError
()
exec.go:222
MethodError
()
plugin.go:456
MethodError
()
container.go:590
MethodError
()
container.go:600
MethodError
()
network.go:329
MethodError
()
network.go:340
FunctionExampleClient_AddEventListener
()
example_test.go:71
FunctionExampleClient_AttachToContainer
()
example_test.go:17
FunctionExampleClient_BuildImage
()
example_test.go:49
FunctionExampleEnv_GetJSON
()
example_test.go:123
FunctionExampleEnv_Map
()
example_test.go:102
FunctionExampleEnv_SetJSON
()
example_test.go:110
MethodFD
()
client_test.go:739
MethodIsTerminal
()
client_test.go:743
MethodMarshalJSON
()
env_test.go:423
MethodMarshalJSON
MarshalJSON returns the JSON representation of the IPNet.
misc.go:151
FunctionNewAuthConfigurationsFromCredsHelpers
NewAuthConfigurationsFromCredsHelpers returns AuthConfigurations from installed credentials helpers
auth.go:306
FunctionNewAuthConfigurationsFromDockerCfg
NewAuthConfigurationsFromDockerCfg returns AuthConfigurations from system config files. The following files are checked in the order listed: If the e
auth.go:138
FunctionNewVersionnedTLSClient
NewVersionnedTLSClient is like NewVersionedClient, but with ann extra n. Deprecated: Use NewVersionedTLSClient instead.
client.go:230
MethodRoundTrip
(r *http.Request)
container_test.go:73
MethodRoundTrip
(r *http.Request)
client_test.go:893
MethodString
String returns a human-readable description of the state
container.go:111
FunctionTestAPIVersions
(t *testing.T)
client_test.go:411
FunctionTestAlwaysRestart
(t *testing.T)
container_restart_test.go:35
FunctionTestAttachContainer
(t *testing.T)
testing/server_test.go:1133
FunctionTestAttachContainerNotFound
(t *testing.T)
testing/server_test.go:1154
FunctionTestAttachContainerWithStreamBlocks
(t *testing.T)
testing/server_test.go:1167
FunctionTestAttachContainerWithStreamBlocksOnCreatedContainers
(t *testing.T)
testing/server_test.go:1206
FunctionTestAttachToContainer
(t *testing.T)
container_attach_test.go:59
FunctionTestAttachToContainerLogs
(t *testing.T)
container_attach_test.go:14
FunctionTestAttachToContainerNilStderr
(t *testing.T)
container_attach_test.go:161
← previousnext →201–300 of 729, ranked by callers