Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for issue8331a (0.24 sec)

  1. src/cmd/cgo/internal/test/issue8331.h

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    typedef struct {
    	int i;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 198 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    	// implicitly dereference a C variable
    	if v := C.issue9557foo.a; v != 42 {
    		t.Fatalf("C.issue9557foo.a expected 42, but is %d", v)
    	}
    }
    
    // issue 8331 part 1
    
    func issue8331a() C.issue8331 {
    	return issue8331Var
    }
    
    // issue 10303
    
    func test10303(t *testing.T, n int) {
    	if runtime.Compiler == "gccgo" {
    		t.Skip("gccgo permits C pointers on the stack")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue18331.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    // Issue 18331: We should catch invalid pragma verbs
    // for code that resides in the standard library.
    package issue18331
    
    //go:unknown // ERROR "//go:unknown is not allowed in the standard library"
    func foo()
    
    //go:nowritebarrierc // ERROR "//go:nowritebarrierc is not allowed in the standard library"
    func bar()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 22:28:17 UTC 2017
    - 685 bytes
    - Viewed (0)
  4. test/fixedbugs/issue13319.go

    Robert Griesemer <******@****.***> 1648671817 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 00:26:58 UTC 2022
    - 423 bytes
    - Viewed (0)
  5. test/fixedbugs/issue23311.go

    Keith Randall <******@****.***> 1543258136 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 26 20:00:59 UTC 2018
    - 191 bytes
    - Viewed (0)
  6. test/typeparam/issue48337a.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 187 bytes
    - Viewed (0)
  7. test/typeparam/issue48337a.out

    Dan Scales <******@****.***> 1631584219 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 17 19:50:04 UTC 2021
    - 27 bytes
    - Viewed (0)
  8. test/fixedbugs/issue8311.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
    - 333 bytes
    - Viewed (0)
  9. test/fixedbugs/issue8336.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 515 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/testx.go

    	// test in go code, after return from cgo
    	issue7978wait(6, 7)
    	issue7978check(t, "test.issue7978go(", "", 3)
    	atomic.StoreUint32(&issue7978sync, 8)
    }
    
    // issue 8331 part 2
    
    var issue8331Var C.issue8331
    
    // issue 8945
    
    //export Test8945
    func Test8945() {
    	_ = C.func8945
    }
    
    // issue 20910
    
    //export multi
    func multi() (*C.char, C.int) {
    	return C.CString("multi"), 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top