Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,434 for 2014 (0.03 sec)

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

    // 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.
    
    package issue8828
    
    //void foo();
    import "C"
    
    func Bar() {
    	C.foo()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 229 bytes
    - Viewed (0)
  2. test/fixedbugs/bug492.go

    // rundir
    
    // 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.
    
    // Test case that gccgo failed to link.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 22 23:07:10 UTC 2014
    - 228 bytes
    - Viewed (0)
  3. test/fixedbugs/gcc61244.go

    // compile
    
    // 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.
    
    // PR61244: Type descriptors expressions were not traversed, causing an ICE
    // in gccgo when producing the backend representation.
    // This is a reduction of a program reported by GoSmith.
    
    package main
    
    const a = 0
    
    func main() {
    	switch i := (interface{})(a); i.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 466 bytes
    - Viewed (0)
  4. test/fixedbugs/issue6572.go

    // errorcheck
    
    // 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.
    
    package main
    
    func foo() (T, T) { // ERROR "undefined"
    	return 0, 0
    }
    
    func bar() (T, string, T) { // ERROR "undefined"
    	return 0, "", 0
    }
    
    func main() {
    	var x, y, z int
    	x, y = foo()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 12 23:07:01 UTC 2021
    - 452 bytes
    - Viewed (0)
  5. test/fixedbugs/issue6703m.go

    // errorcheck
    
    // 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.
    
    // Check for cycles in the method value of a value returned from a function call.
    
    package funcmethvalue
    
    type T int
    
    func (T) m() int {
    	_ = x
    	return 0
    }
    
    func f() T {
    	return T(0)
    }
    
    var (
    	t T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 437 bytes
    - Viewed (0)
  6. test/fixedbugs/issue6703y.go

    // errorcheck
    
    // 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.
    
    // Check for cycles in the method value of a pointer value returned
    // from a function call.
    
    package funcptrmethvalue
    
    type T int
    
    func (*T) pm() int {
    	_ = x
    	return 0
    }
    
    func pf() *T {
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 447 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/backdoor.go

    // 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.
    
    package cgotest
    
    import _ "unsafe"
    
    //go:linkname lockedOSThread runtime.lockedOSThread
    //extern runtime_lockedOSThread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 307 bytes
    - Viewed (0)
  8. src/runtime/go_tls.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.
    
    #ifdef GOARCH_arm
    #define LR R14
    #endif
    
    #ifdef GOARCH_amd64
    #define	get_tls(r)	MOVQ TLS, r
    #define	g(r)	0(r)(TLS*1)
    #endif
    
    #ifdef GOARCH_386
    #define	get_tls(r)	MOVL TLS, r
    #define	g(r)	0(r)(TLS*1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 10 22:38:38 UTC 2019
    - 366 bytes
    - Viewed (0)
  9. src/runtime/cputicks.go

    // 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.
    
    //go:build !arm && !arm64 && !mips64 && !mips64le && !mips && !mipsle && !wasm
    
    package runtime
    
    // careful: cputicks is not guaranteed to be monotonic! In particular, we have
    // noticed drift between cpus on certain os/arch combinations. See issue 8976.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 12:47:42 UTC 2023
    - 437 bytes
    - Viewed (0)
  10. test/fixedbugs/bug488.go

    // errorcheckdir
    
    // 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.
    
    // The gccgo compiler had a bug: if one file in a package did a dot
    // import, then an earlier file in the package would incorrectly
    // resolve to the imported names rather than reporting undefined
    // errors.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 404 bytes
    - Viewed (0)
Back to top