fork of https://github.com/sourcegraph/zoekt
1queryString: WaitGroup
2query: case_substr:"WaitGroup"
3targetRank: 1
4
5**github.com/sourcegraph/conc/waitgroup.go**
622:type WaitGroup struct {
710:func NewWaitGroup() *WaitGroup {
838:func (h *WaitGroup) Wait() {
9hidden 10 more line matches
10
11github.com/golang/go/src/sync/waitgroup.go
1223:type WaitGroup struct {
1391:func (wg *WaitGroup) Wait() {
1413:// A WaitGroup waits for a collection of goroutines to finish.
15hidden 13 more line matches
16
17github.com/golang/go/test/fixedbugs/issue19467.dir/mysync.go
189:type WaitGroup struct {
1913:func (wg *WaitGroup) Add(x int) {
2019:func (wg *WaitGroup) Done() {
21
22github.com/golang/go/test/fixedbugs/issue44370.dir/a.go
238:type StoppableWaitGroup struct {
2416:func NewStoppableWaitGroup() *StoppableWaitGroup {
257:// A StoppableWaitGroup waits for a collection of goroutines to finish.
26hidden 3 more line matches
27
28github.com/sourcegraph/conc/waitgroup_test.go
2913:func ExampleWaitGroup() {
3042:func TestWaitGroup(t *testing.T) {
3129:func ExampleWaitGroup_WaitAndRecover() {
32hidden 12 more line matches
33
34github.com/golang/go/src/sync/example_test.go
3520:func ExampleWaitGroup() {
3619:// using a WaitGroup to block until all the fetches are complete.
3721: var wg sync.WaitGroup
38hidden 1 more line matches
39
40hidden 227 more file matches