Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for issue32233 (0.27 sec)

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

    	ch := make(chan int)
    
    	for i := 0; i < 42; i++ {
    		h := cgo.NewHandle(ch)
    		go func() {
    			C.cFunc37033(C.uintptr_t(h))
    		}()
    		if v := <-ch; issue37033 != v {
    			t.Fatalf("unexpected receiving value: got %d, want %d", v, issue37033)
    		}
    		h.Delete()
    	}
    }
    
    // issue 38649
    
    var issue38649 C.netbsd_gid = 42
    
    // issue 39877
    
    var issue39877 *C.void = 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. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/issue18331.go", // missing error about misuse of //go:noescape (irgen needs code from noder)
    	"fixedbugs/issue18419.go", // types2 reports no field or method member, but should say unexported
    	"fixedbugs/issue20233.go", // types2 reports two instead of one error (preference: 1.17 compiler)
    	"fixedbugs/issue20245.go", // types2 reports two instead of one error (preference: 1.17 compiler)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    		// is expected due to context cancel.
    		_, err = stmt.Query(1)
    		if err != nil {
    			break
    		}
    	}
    	_ = tx.Rollback()
    }
    
    // Issue32530 encounters an issue where a connection may
    // expire right after it comes out of a used connection pool
    // even when a new connection is requested.
    func TestConnExpiresFreshOutOfPool(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top