Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test3250 (0.44 sec)

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

    func testUnsignedInt(t *testing.T) {
    	a := (int64)(C.UINT32VAL)
    	b := (int64)(0xc008427b)
    	if a != b {
    		t.Errorf("Incorrect unsigned int - got %x, want %x", a, b)
    	}
    }
    
    // issue 3250
    
    func test3250(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skip("not applicable on windows")
    	}
    
    	t.Skip("skipped, see golang.org/issue/5885")
    	var (
    		thres = 1
    		sig   = syscall_dot_SIGCHLD
    	)
    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. pkg/printers/internalversion/printers_test.go

    		{ // Test pod condition pending with deletion
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test20", DeletionTimestamp: &deleteTime},
    				Spec:       api.PodSpec{Containers: make([]api.Container, 1)},
    				Status: api.PodStatus{
    					Phase: "Pending",
    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test20", "0/1", "Terminating", "0", "<unknown>"}}},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top