func sync.NewCond

6 uses

	sync (current package)
		cond.go#L48: func NewCond(l Locker) *Cond {

	golang.org/x/net/http2
		transport.go#L854: 	cc.cond = sync.NewCond(&cc.mu)

	google.golang.org/grpc
		server.go#L705: 	s.cv = sync.NewCond(&s.mu)

	google.golang.org/grpc/internal/transport
		http2_client.go#L400: 		t.kpDormancyCond = sync.NewCond(&t.mu)

	net/http
		h2_bundle.go#L8276: 	cc.cond = sync.NewCond(&cc.mu)
		server.go#L669: 		cr.cond = sync.NewCond(&cr.mu)