Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,434 for 2014 (0.03 sec)

  1. test/fixedbugs/issue7346.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.
    
    // issue 7346 : internal error "doasm" error due to checknil
    // of a nil literal.
    
    package main
    
    func main() {
    	_ = *(*int)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 303 bytes
    - Viewed (0)
  2. src/runtime/os_linux_noauxv.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 linux && !arm && !arm64 && !loong64 && !mips && !mipsle && !mips64 && !mips64le && !s390x && !ppc64 && !ppc64le
    
    package runtime
    
    func archauxv(tag, val uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 20 15:12:31 UTC 2022
    - 337 bytes
    - Viewed (0)
  3. test/fixedbugs/gcc61255.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.
    
    // PR61255: gccgo failed to compile IncDec statements on variadic functions.
    
    package main
    
    func main() {
    	append([]byte{}, 0)[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 306 bytes
    - Viewed (0)
  4. test/fixedbugs/issue7884.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.
    
    package main
    
    import "fmt"
    
    func main() {
    	var ii interface{} = 5
    	zz, err := ii.(interface{})
    	fmt.Println(zz, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 291 bytes
    - Viewed (0)
  5. test/fixedbugs/issue7996.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.
    
    // /tmp/x.go:5: illegal constant expression: bool == interface {}
    
    package p
    
    var m = map[interface{}]struct{}{
    	nil:  {},
    	true: {},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 308 bytes
    - Viewed (0)
  6. src/runtime/os_linux_novdso.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 linux && !386 && !amd64 && !arm && !arm64 && !loong64 && !mips64 && !mips64le && !ppc64 && !ppc64le && !riscv64 && !s390x
    
    package runtime
    
    func vdsoauxv(tag, val uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 347 bytes
    - Viewed (0)
  7. test/fixedbugs/issue6405.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.
    
    // Issue 6405: spurious 'not enough arguments to return' error
    
    package p
    
    func Open() (int, error) {
    	return OpenFile() // ERROR "undefined: OpenFile"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 14 15:42:42 UTC 2014
    - 329 bytes
    - Viewed (0)
  8. test/fixedbugs/issue8073.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.
    
    // issue 8073.
    // was "internal compiler error: overflow: float64 integer constant"
    
    package main
    
    func main() {
    	var x int
    	_ = float64(x * 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 318 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testnocgo/nocgo_test.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 nocgo
    
    import "testing"
    
    func TestNop(t *testing.T) {
    	i := NoCgo()
    	if i != 42 {
    		t.Errorf("got %d, want %d", i, 42)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 292 bytes
    - Viewed (0)
  10. src/runtime/os_darwin_arm64.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 runtime
    
    //go:nosplit
    func cputicks() int64 {
    	// runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
    	return nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 329 bytes
    - Viewed (0)
Back to top