Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for issue52127 (0.09 sec)

  1. test/fixedbugs/issue52193.go

    Matthew Dempsky <******@****.***> 1707330233 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 17:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. test/fixedbugs/issue25727.go

    Robert Griesemer <******@****.***> 1706742151 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/plugin_test.go

    	goCmd(t, "build", "-o", "issue44956.exe", "./issue44956/main.go")
    	run(t, "./issue44956.exe")
    }
    
    func TestIssue52937(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "issue52937.so", "./issue52937/main.go")
    }
    
    func TestIssue53989(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "issue53989.so", "./issue53989/plugin.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stdlib_test.go

    		"issue49814.go",  // go/types does not have constraints on array size
    		"issue56103.go",  // anonymous interface cycles; will be a type checker error in 1.22
    		"issue52697.go",  // types2 does not have constraints on stack size
    
    		// These tests requires runtime/cgo.Incomplete, which is only available on some platforms.
    		// However, types2 does not know about build constraints.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/test.go

    // issue 50987
    // disable arm64 GCC warnings
    #cgo CFLAGS: -Wno-psabi -Wno-unknown-warning-option
    
    typedef struct {
    } foo;
    
    typedef struct {
    	int x : 1;
    } bar;
    
    int issue5242(foo f, bar b) {
    	return 5242;
    }
    
    // issue 5337
    // Verify that we can withstand SIGPROF received on foreign threads
    
    #ifdef WIN32
    void test5337() {}
    #else
    static void *thread1(void *p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top