MCPcopy Create free account
hub / github.com/golang/appengine / Stop

Function Stop

module/module.go:104–114  ·  view source on GitHub ↗

Stop stops the specified version of the specified module. If either module or version are the empty string, it means the default.

(c context.Context, module, version string)

Source from the content-addressed store, hash-verified

102// Stop stops the specified version of the specified module.
103// If either module or version are the empty string, it means the default.
104func Stop(c context.Context, module, version string) error {
105 req := &pb.StopModuleRequest{}
106 if module != "" {
107 req.Module = &module
108 }
109 if version != "" {
110 req.Version = &version
111 }
112 res := &pb.StopModuleResponse{}
113 return internal.Call(c, "modules", "StopModule", req, res)
114}

Callers 1

TestStopFunction · 0.70

Calls 1

CallFunction · 0.92

Tested by 1

TestStopFunction · 0.56

Used in the wild real call sites across dependent graphs

searching dependent graphs…