type net/http.atomicBool
10 uses
net/http (current package)
client.go#L394: var timedOut atomicBool
server.go#L435: canWriteContinue atomicBool
server.go#L473: handlerDone atomicBool // set true when the handler exits
server.go#L524: type atomicBool int32
server.go#L526: func (b *atomicBool) isSet() bool { return atomic.LoadInt32((*int32)(b)) != 0 }
server.go#L527: func (b *atomicBool) setTrue() { atomic.StoreInt32((*int32)(b), 1) }
server.go#L528: func (b *atomicBool) setFalse() { atomic.StoreInt32((*int32)(b), 0) }
server.go#L893: closed atomicBool
server.go#L894: sawEOF atomicBool
server.go#L2641: inShutdown atomicBool // true when when server is in shutdown
![]() |
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. |