Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,994 for 2014 (0.07 sec)

  1. 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)
  2. test/fixedbugs/issue7547.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
    
    func f() map[string]interface{} {
    	var p *map[string]map[string]interface{}
    	_ = p
    	return nil
    }
    
    func main() {
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 04 19:58:19 UTC 2014
    - 305 bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/unsafeptr/unsafeptr.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 unsafeptr
    
    import "unsafe"
    
    func _() {
    	var x unsafe.Pointer
    	var y uintptr
    	x = unsafe.Pointer(y) // ERROR "possible misuse of unsafe.Pointer"
    	_ = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 321 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/coverage.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 language
    
    // BaseLanguages returns the list of all supported base languages. It generates
    // the list by traversing the internal structures.
    func BaseLanguages() []Language {
    	base := make([]Language, 0, NumLanguages)
    	for i := 0; i < langNoIndexOffset; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 730 bytes
    - Viewed (0)
  5. test/fixedbugs/issue7944.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.
    
    // Issue 7944:
    // Liveness bitmaps said b was live at call to g,
    // but no one told the register optimizer.
    
    package main
    
    import "runtime"
    
    func f(b []byte) {
    	for len(b) > 0 {
    		n := len(b)
    		n = f1(n)
    		f2(b[n:])
    		b = b[n:]
    	}
    	g()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 558 bytes
    - Viewed (0)
  6. test/fixedbugs/issue8011.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
    
    func main() {
    	c := make(chan chan int, 1)
    	c1 := make(chan int, 1)
    	c1 <- 42
    	c <- c1
    	x := <-<-c
    	if x != 42 {
    		println("BUG:", x, "!= 42")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 330 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.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) || (linux && arm) || (linux && mips) || (linux && mipsle) || (linux && ppc)
    
    package unix
    
    func init() {
    	// On 32-bit Linux systems, the fcntl syscall that matches Go's
    	// Flock_t type is SYS_FCNTL64, not SYS_FCNTL.
    	fcntl64Syscall = SYS_FCNTL64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 436 bytes
    - Viewed (0)
  8. src/runtime/asm.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"
    
    #ifndef GOARCH_amd64
    TEXT ·sigpanic0(SB),NOSPLIT,$0-0
    	JMP	·sigpanic<ABIInternal>(SB)
    #endif
    
    // See map.go comment on the need for this routine.
    TEXT ·mapinitnoop<ABIInternal>(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 21:49:14 UTC 2024
    - 386 bytes
    - Viewed (0)
  9. test/fixedbugs/issue7995.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.
    
    // Issue 7995: globals not flushed quickly enough.
    
    package main
    
    import "fmt"
    
    var (
    	p = 1
    	q = &p
    )
    
    func main() {
    	p = 50
    	*q = 100
    	s := fmt.Sprintln(p, *q)
    	if s != "100 100\n" {
    		println("BUG:", s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 379 bytes
    - Viewed (0)
  10. test/fixedbugs/issue9432.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.
    
    // gc used to recurse infinitely when dowidth is applied
    // to a broken recursive type again.
    // See golang.org/issue/9432.
    package p
    
    type foo struct { // ERROR "invalid recursive type|cycle"
    	bar  foo
    	blah foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 390 bytes
    - Viewed (0)
Back to top