Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CoroCgoCallbackIterCallback (0.4 sec)

  1. src/runtime/coro_test.go

    		t.Skip("coro cgo callback tests not supported on Windows")
    	}
    	for _, test := range []string{
    		"CoroCgoIterCallback",
    		"CoroCgoIterCallbackYield",
    		"CoroCgoCallback",
    		"CoroCgoCallbackIterNested",
    		"CoroCgoCallbackIterCallback",
    		"CoroCgoCallbackIterCallbackYield",
    		"CoroCgoCallbackAfterPull",
    		"CoroCgoStopCallback",
    		"CoroCgoStopCallbackIterNested",
    	} {
    		t.Run(test, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:36:37 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/coro.go

    		println("expect: OK")
    		CoroCgo(callerExhaustCallback, iterSimple)
    	})
    	register("CoroCgoCallbackIterNested", func() {
    		println("expect: OK")
    		CoroCgo(callerExhaustCallback, iterNested)
    	})
    	register("CoroCgoCallbackIterCallback", func() {
    		println("expect: OK")
    		CoroCgo(callerExhaustCallback, iterCallback)
    	})
    	register("CoroCgoCallbackIterCallbackYield", func() {
    		println("expect: OS thread locking must match")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top