func sync.NewCond

6 uses

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

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

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

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

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