Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,994 for 2014 (0.25 sec)

  1. src/internal/syscall/unix/sysnum_linux_amd64.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 unix
    
    const (
    	getrandomTrap       uintptr = 318
    	copyFileRangeTrap   uintptr = 326
    	pidfdSendSignalTrap uintptr = 424
    	pidfdOpenTrap       uintptr = 434
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 324 bytes
    - Viewed (0)
  2. test/fixedbugs/issue6406.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 main() {
    	s = "bob" // ERROR "undefined.*s"
    	_ = s // ERROR "undefined.*s"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 03 20:03:20 UTC 2014
    - 271 bytes
    - Viewed (0)
  3. test/fixedbugs/issue8017.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.
    
    // Issues 8017 and 8058: walk modifies nodes generated
    // by slicelit and causes an internal error afterwards
    // when gen_as_init parses it back.
    
    package main
    
    func F() {
    	var ch chan int
    	select {
    	case <-ch:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 540 bytes
    - Viewed (0)
  4. test/fixedbugs/issue9321.go

    // run
    
    // 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 (
    	"bytes"
    	"runtime"
    	"runtime/pprof"
    	"sync"
    )
    
    func test() {
    	var wg sync.WaitGroup
    	wg.Add(2)
    	test := func() {
    		for i := 0; i < 10; i++ {
    			buf := &bytes.Buffer{}
    			pprof.Lookup("goroutine").WriteTo(buf, 2)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 538 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/issue8517.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 !windows
    
    package cgotest
    
    import "testing"
    
    func test8517(t *testing.T) {
    	t.Skip("skipping windows only test")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 286 bytes
    - Viewed (0)
  6. test/fixedbugs/issue8280.go

    // compiledir
    
    // 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 8280: cannot import package exporting a func var returning a result named _
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 24 20:53:34 UTC 2014
    - 277 bytes
    - Viewed (0)
  7. test/fixedbugs/issue7538a.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 7538: blank (_) labels handled incorrectly
    
    package p
    
    func f() {
    _:
    _:
    	goto _ // ERROR "not defined|undefined label"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 305 bytes
    - Viewed (0)
  8. test/fixedbugs/gcc61254.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.
    
    // PR61254: gccgo failed to compile a slice expression with missing indices.
    
    package main
    
    func main() {
    	[][]int{}[:][0][0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 302 bytes
    - Viewed (0)
  9. src/runtime/rt0_solaris_amd64.s

    // 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.
    
    #include "textflag.h"
    
    TEXT _rt0_amd64_solaris(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_solaris_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 311 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue8148.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.
    
    // Issue 8148.  A typedef of an unnamed struct didn't work when used
    // with an exported Go function.  No runtime test; just make sure it
    // compiles.
    
    package cgotest
    
    /*
    typedef struct { int i; } T;
    int get8148(void);
    */
    import "C"
    
    //export issue8148Callback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 526 bytes
    - Viewed (0)
Back to top