internal/singleflight.Group.m (field)
12 uses
internal/singleflight (current package)
singleflight.go#L31: m map[string]*call // lazily initialized
singleflight.go#L49: if g.m == nil {
singleflight.go#L50: g.m = make(map[string]*call)
singleflight.go#L52: if c, ok := g.m[key]; ok {
singleflight.go#L60: g.m[key] = c
singleflight.go#L74: if g.m == nil {
singleflight.go#L75: g.m = make(map[string]*call)
singleflight.go#L77: if c, ok := g.m[key]; ok {
singleflight.go#L85: g.m[key] = c
singleflight.go#L99: delete(g.m, key)
singleflight.go#L114: c, ok := g.m[key]
singleflight.go#L119: 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. |