Searched
refs:make (Results
451 -
475 of
4715) sorted by null
<<11121314151617181920>>
/prebuilts/go/darwin-x86/test/chan/ |
select4.go | 20 c := make(chan int, 1) 21 c1 := make(chan int)
|
/prebuilts/go/darwin-x86/test/ |
chancap.go | 12 c := make(chan int, 10) 26 c = make(chan int)
|
struct0.go | 17 var m = make(map[interface{}]int) 29 c := make(chan interface{})
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug143.go | 12 m := make(map[string] int); 17 m := make(myMap);
|
bug212.go | 10 var v1 = S{ make(map[int]int) } // ERROR "cannot|illegal|incompatible|wrong" 12 var v3 = S{ make(map[uint]int) } // ERROR "cannot|illegal|incompatible|wrong"
|
issue11286.go | 25 ts = make([]T, 4) 27 ts[i].b = make(map[string]int)
|
issue13169.go | 28 c := make(chan interface{}) 29 done := make(chan bool)
|
issue15311.go | 18 foo.toInt: make(map[string]int), // ERROR "field name" 19 bar.toString: make(map[int]string), // ERROR "field name"
|
issue4313.go | 12 c := make(chan int, 1) 27 return make(chan bool, 0)
|
/prebuilts/go/darwin-x86/test/fixedbugs/issue5291.dir/ |
pkg1.go | 24 x := make([]T2, len) 29 y := make([]string, 1)
|
/prebuilts/go/linux-x86/doc/progs/ |
timeout1.go | 12 ch := make(chan bool, 1) 13 timeout := make(chan bool, 1)
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/ |
slice.go | 18 done := make(chan struct{}) 19 a := make([]int, N+10)
|
/prebuilts/go/linux-x86/src/cmd/go/ |
signal.go | 14 var interrupted = make(chan struct{}) 18 sig := make(chan os.Signal)
|
/prebuilts/go/linux-x86/src/ |
cmp.bash | 12 # The script builds the std library (make.bash) once 26 (export GO_GCFLAGS="$FLAGS1"; sh make.bash) 40 (export GO_GCFLAGS="$FLAGS2"; sh make.bash)
|
iostest.bash | 11 if [ ! -f make.bash ]; then 32 # Reboot to make sure previous runs do not interfere with the current run. 36 # Initial sleep to make sure we are restarting before we start polling. 57 ./make.bash
|
/prebuilts/go/linux-x86/src/crypto/rand/ |
example_test.go | 17 b := make([]byte, c) 24 fmt.Println(bytes.Equal(b, make([]byte, c)))
|
/prebuilts/go/linux-x86/test/chan/ |
select4.go | 20 c := make(chan int, 1) 21 c1 := make(chan int)
|
/prebuilts/go/linux-x86/test/ |
chancap.go | 12 c := make(chan int, 10) 26 c = make(chan int)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug143.go | 12 m := make(map[string] int); 17 m := make(myMap);
|
bug212.go | 10 var v1 = S{ make(map[int]int) } // ERROR "cannot|illegal|incompatible|wrong" 12 var v3 = S{ make(map[uint]int) } // ERROR "cannot|illegal|incompatible|wrong"
|
issue11286.go | 25 ts = make([]T, 4) 27 ts[i].b = make(map[string]int)
|
issue13169.go | 28 c := make(chan interface{}) 29 done := make(chan bool)
|
issue15311.go | 18 foo.toInt: make(map[string]int), // ERROR "field name" 19 bar.toString: make(map[int]string), // ERROR "field name"
|
issue4313.go | 12 c := make(chan int, 1) 27 return make(chan bool, 0)
|
/prebuilts/go/linux-x86/test/fixedbugs/issue5291.dir/ |
pkg1.go | 24 x := make([]T2, len) 29 y := make([]string, 1)
|
Completed in 512 milliseconds
<<11121314151617181920>>