Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,840 for f012 (0.04 sec)

  1. test/fixedbugs/bug392.dir/pkg3.go

    // Copyright 2012 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.
    
    // Use the functions in pkg2.go so that the inlined
    // forms get type-checked.
    
    package pkg3
    
    import "./pkg2"
    
    var x = pkg2.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 303 bytes
    - Viewed (0)
  2. test/fixedbugs/issue4370.go

    // compiledir
    
    // Copyright 2012 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.
    
    // Re-exporting inlined function bodies missed types in x, ok := v.(Type)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 266 bytes
    - Viewed (0)
  3. test/fixedbugs/bug402.go

    // run
    
    // Copyright 2012 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"
    
    var a = []int64{
    	0.0005 * 1e9,
    	0.001 * 1e9,
    	0.005 * 1e9,
    	0.01 * 1e9,
    	0.05 * 1e9,
    	0.1 * 1e9,
    	0.5 * 1e9,
    	1 * 1e9,
    	5 * 1e9,
    }
    
    func main() {
    	s := ""
    	for _, v := range a {
    		s += fmt.Sprint(v) + " "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 518 bytes
    - Viewed (0)
  4. test/fixedbugs/issue4614.go

    // compile
    
    // Copyright 2012 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 4614: slicing of nil slices confuses the compiler
    // with a uintptr(nil) node.
    
    package p
    
    import "unsafe"
    
    var n int
    
    var _ = []int(nil)[1:]
    var _ = []int(nil)[n:]
    
    var _ = uintptr(unsafe.Pointer(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 419 bytes
    - Viewed (0)
  5. test/fixedbugs/bug468.dir/p2.go

    // Copyright 2012 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 (
    	"reflect"
    
    	"./p1"
    )
    
    func main() {
    	var v1 = p1.S{1, 2}
    	var v2 = struct { X, Y int }{1, 2}
    	v1 = v2
    	t1 := reflect.TypeOf(v1)
    	t2 := reflect.TypeOf(v2)
    	if !t1.AssignableTo(t2) {
    		panic(0)
    	}
    	if !t2.AssignableTo(t1) {
    		panic(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 422 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/cgo_stubs_android_test.go

    // Copyright 2012 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 "testing"
    
    // Stubs for tests that fails to build on Android
    func test6997(t *testing.T)        {}
    func test8694(t *testing.T)        {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 359 bytes
    - Viewed (0)
  7. src/cmd/go/internal/base/signal_unix.go

    // Copyright 2012 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 unix || js || wasip1
    
    package base
    
    import (
    	"os"
    	"syscall"
    )
    
    var signalsToIgnore = []os.Signal{os.Interrupt, syscall.SIGQUIT}
    
    // SignalTrace is the signal to send to make a Go program
    // crash with a stack trace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 433 bytes
    - Viewed (0)
  8. test/fixedbugs/bug415.dir/p.go

    // Copyright 2012 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 p
    
    type A struct {
    	s struct{int}
    }
    
    func (a *A) f() {
    	a.s = struct{int}{0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 248 bytes
    - Viewed (0)
  9. test/fixedbugs/bug426.go

    // compile
    
    // Copyright 2012 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.
    
    // gccgo crashed compiling this.
    
    package p
    
    type T *T
    
    func f(t T) {
    	println(t, *t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 01 05:51:21 UTC 2012
    - 260 bytes
    - Viewed (0)
  10. test/fixedbugs/bug445.go

    // compile
    
    // Copyright 2012 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 3765
    
    package main
    
    func f(x uint) uint {
    	m := ^(1 << x)
    	return uint(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 257 bytes
    - Viewed (0)
Back to top