func sync.NewCond
8 uses
sync (current package)
cond.go#L32: func NewCond(l Locker) *Cond {
github.com/lib/pq
notify.go#L462: l.reconnectCond = sync.NewCond(&l.lock)
golang.org/x/crypto/ssh
common.go#L332: func newCond() *sync.Cond { return sync.NewCond(new(sync.Mutex)) }
golang.org/x/net/http2
transport.go#L663: cc.cond = sync.NewCond(&cc.mu)
google.golang.org/grpc
server.go#L511: s.cv = sync.NewCond(&s.mu)
google.golang.org/grpc/internal/transport
http2_client.go#L304: t.kpDormancyCond = sync.NewCond(&t.mu)
net/http
h2_bundle.go#L7166: cc.cond = sync.NewCond(&cc.mu)
server.go#L671: cr.cond = sync.NewCond(&cr.mu)
![]() |
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. |