Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test6128 (0.18 sec)

  1. src/cmd/cgo/internal/test/test.go

    		t.Errorf("expected 5, got %v", v)
    	}
    }
    
    // issue 5986
    
    func test5986(t *testing.T) {
    	C.output5986()
    }
    
    // issue 6128
    
    func test6128() {
    	// nothing to run, just make sure this compiles.
    	_ = C.X
    }
    
    // issue 6390
    
    func test6390(t *testing.T) {
    	p1 := C.malloc(1024)
    	if p1 == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. test/recover.go

    		test9reflect1()
    		test9reflect2()
    	}
    	test10()
    	if !interp {
    		test10reflect1()
    		test10reflect2()
    	}
    	test11()
    	if !interp {
    		test11reflect1()
    		test11reflect2()
    	}
    	test111()
    	test12()
    	if !interp {
    		test12reflect1()
    		test12reflect2()
    	}
    	test13()
    	if !interp {
    		test13reflect1()
    		test13reflect2()
    	}
    	test14()
    	if !interp {
    		test14reflect1()
    		test14reflect2()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/testx.go

    func BackIntoGo() {
    	x := 1
    
    	for i := 0; i < 10000; i++ {
    		xvariadic(x)
    		if x != 1 {
    			panic("x is not 1?")
    		}
    	}
    }
    
    func xvariadic(x ...interface{}) {
    }
    
    func test1328(t *testing.T) {
    	C.IntoC()
    }
    
    // issue 1560
    // Test that C functions and Go functions run in parallel.
    
    var (
    	issue1560 int32
    
    	issue1560Ch = make(chan bool, 2)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/events_test.go

    					APIVersion: "batch/v1",
    					Kind:       "Job",
    					Namespace:  "foo",
    				},
    			},
    			true,
    		},
    		{
    			&core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test12",
    					Namespace: "foo",
    				},
    				InvolvedObject: core.ObjectReference{
    					APIVersion: "other/v1beta1",
    					Kind:       "FooBar",
    					Namespace:  "bar",
    				},
    			},
    			false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
Back to top