Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for issue32233 (0.14 sec)

  1. test/fixedbugs/issue32723.go

    Ian Lance Taylor <******@****.***> 1607981195 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 816 bytes
    - Viewed (0)
  2. test/fixedbugs/issue12133.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 522 bytes
    - Viewed (0)
  3. test/fixedbugs/issue7223.go

    Robert Griesemer <******@****.***> 1637618001 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 23:51:43 UTC 2021
    - 615 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/cshared_test.go

    	tmpdir, err := os.MkdirTemp("", "cshared-TestIssue36233")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(tmpdir)
    
    	const exportHeader = "issue36233.h"
    
    	run(t, nil, "go", "tool", "cgo", "-exportheader", exportHeader, "-objdir", tmpdir, "./issue36233/issue36233.go")
    	data, err := os.ReadFile(exportHeader)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	funcs := []struct{ name, signature string }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/testx.go

    func test31891(t *testing.T) {
    	C.callIssue31891()
    }
    
    // issue 37033, check if cgo.Handle works properly
    
    var issue37033 = 42
    
    //export GoFunc37033
    func GoFunc37033(handle C.uintptr_t) {
    	h := cgo.Handle(handle)
    	ch := h.Value().(chan int)
    	ch <- issue37033
    }
    
    // issue 38408
    // A typedef pointer can be used as the element type.
    // No runtime test; just make sure it compiles.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. cmd/testdata/decryptObjectInfo.json.zst

    AJbZzIZml2dYFT8N+wgSc0dKAyK73vh+IQsakCgVvxpkgXrymv3g==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/link/internal/ld/testdata/issue32233/lib/ObjC.m","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"Rdh6VBVEL2/MB3YvM/ZqLoK6iA4gYWpDK1X691=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IA...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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