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)