github.com/aws/aws-sdk-go/internal/sync/singleflight.Group.m (field)
12 uses
github.com/aws/aws-sdk-go/internal/sync/singleflight (current package)
singleflight.go#L35: m map[string]*call // lazily initialized
singleflight.go#L53: if g.m == nil {
singleflight.go#L54: g.m = make(map[string]*call)
singleflight.go#L56: if c, ok := g.m[key]; ok {
singleflight.go#L64: g.m[key] = c
singleflight.go#L76: if g.m == nil {
singleflight.go#L77: g.m = make(map[string]*call)
singleflight.go#L79: if c, ok := g.m[key]; ok {
singleflight.go#L87: g.m[key] = c
singleflight.go#L102: delete(g.m, key)
singleflight.go#L115: if c, ok := g.m[key]; ok {
singleflight.go#L118: delete(g.m, key)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |