Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,840 for f012 (0.03 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/race.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 windows && race
    
    package windows
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    const raceenabled = true
    
    func raceAcquire(addr unsafe.Pointer) {
    	runtime.RaceAcquire(addr)
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    	runtime.RaceReleaseMerge(addr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 591 bytes
    - Viewed (0)
  2. test/fixedbugs/bug404.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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 30 19:12:05 UTC 2012
    - 191 bytes
    - Viewed (0)
  3. test/fixedbugs/bug448.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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 191 bytes
    - Viewed (0)
  4. test/fixedbugs/bug414.dir/p1.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 p1
    
    import "fmt"
    
    type Fer interface {
    	f() string
    }
    
    type Object struct{}
    
    func (this *Object) f() string {
    	return "Object.f"
    }
    
    func PrintFer(fer Fer) {
    	fmt.Sprintln(fer.f())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 349 bytes
    - Viewed (0)
  5. test/fixedbugs/issue4359.go

    // errorcheck
    
    // 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 4359: wrong handling of broken struct fields
    // causes "internal compiler error: lookdot badwidth".
    
    package main
    
    type T struct {
    	x T1 // ERROR "undefined"
    }
    
    func f() {
    	var t *T
    	_ = t.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 377 bytes
    - Viewed (0)
  6. test/fixedbugs/bug407.dir/one.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 one
    
    // Issue 2877
    type T struct {
    	f func(t *T, arg int)
    	g func(t T, arg int)
    }
    
    func (t *T) foo(arg int) {}
    func (t T) goo(arg int) {}
    
    func (t *T) F() { t.f = (*T).foo }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 377 bytes
    - Viewed (0)
  7. src/runtime/race/testdata/cgo_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 race_test
    
    import (
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"testing"
    )
    
    func TestNoRaceCgoSync(t *testing.T) {
    	cmd := exec.Command(testenv.GoToolPath(t), "run", "-race", "cgo_test_main.go")
    	cmd.Stdout = os.Stdout
    	cmd.Stderr = os.Stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 22:49:11 UTC 2016
    - 497 bytes
    - Viewed (0)
  8. test/fixedbugs/issue4590.dir/pkg1.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 pkg1
    
    type A interface {
    	Write() error
    }
    
    type B interface {
    	Hello()
    	world()
    }
    
    type C struct{}
    
    func (c C) Write() error { return nil }
    
    var T = struct{ A }{nil}
    var U = struct{ B }{nil}
    var V A = struct{ *C }{nil}
    var W = interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 438 bytes
    - Viewed (0)
  9. test/fixedbugs/issue4590.dir/prog.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 (
    	"./pkg1"
    	"./pkg2"
    )
    
    func main() {
    	if pkg1.T != pkg2.T {
    		panic("pkg1.T != pkg2.T")
    	}
    	if pkg1.U != pkg2.U {
    		panic("pkg1.U != pkg2.U")
    	}
    	if pkg1.V != pkg2.V {
    		panic("pkg1.V != pkg2.V")
    	}
    	if pkg1.W != pkg2.W {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 438 bytes
    - Viewed (0)
  10. test/fixedbugs/issue3552.dir/two.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 one.go so that the inlined
    // forms get type-checked.
    
    package two
    
    import "./one"
    
    func use() {
    	var t one.T
    	var u one.U
    	var v one.V
    	var w one.W
    
    	_ = t.F()
    	_ = u.F()
    	_ = v.F()
    	_ = w.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 380 bytes
    - Viewed (0)
Back to top