sync.Map.dirty (field)
18 uses
sync (current package)
map.go#L51: dirty map[interface{}]*entry
map.go#L113: e, ok = m.dirty[key]
map.go#L148: m.dirty[key] = e
map.go#L151: } else if e, ok := m.dirty[key]; ok {
map.go#L160: m.dirty[key] = newEntry(value)
map.go#L213: m.dirty[key] = e
map.go#L216: } else if e, ok := m.dirty[key]; ok {
map.go#L226: m.dirty[key] = newEntry(value)
map.go#L276: e, ok = m.dirty[key]
map.go#L277: delete(m.dirty, key)
map.go#L332: read = readOnly{m: m.dirty}
map.go#L334: m.dirty = nil
map.go#L353: if m.misses < len(m.dirty) {
map.go#L356: m.read.Store(readOnly{m: m.dirty})
map.go#L357: m.dirty = nil
map.go#L362: if m.dirty != nil {
map.go#L367: m.dirty = make(map[interface{}]*entry, len(read.m))
map.go#L370: m.dirty[k] = e
![]() |
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. |