Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,287 for 27018 (0.04 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue24351/plugin.go

    // Copyright 2018 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 B(c chan bool) {
    	go func() {
    		fmt.Println(1.5)
    		c <- true
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 261 bytes
    - Viewed (0)
  2. test/fixedbugs/bug506.dir/a.go

    // Copyright 2018 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 a
    
    type internal struct {
    	f1 string
    	f2 float64
    }
    
    type S struct {
    	F struct {
    		I internal
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 18 04:57:41 UTC 2018
    - 266 bytes
    - Viewed (0)
  3. src/runtime/os_windows_arm64.go

    // Copyright 2018 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
    
    import "unsafe"
    
    //go:nosplit
    func cputicks() int64 {
    	var counter int64
    	stdcall1(_QueryPerformanceCounter, uintptr(unsafe.Pointer(&counter)))
    	return counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:40:56 UTC 2021
    - 339 bytes
    - Viewed (0)
  4. test/fixedbugs/issue23116.go

    // errorcheck
    
    // Copyright 2018 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
    
    func f(x interface{}) {
    	switch x.(type) {
    	}
    
    	switch t := x.(type) { // ERROR "declared and not used"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 295 bytes
    - Viewed (0)
  5. test/fixedbugs/bug506.go

    // rundir
    
    // Copyright 2018 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 caused an undefined symbol reference building hash functions
    // for an imported struct with unexported fields.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 18 04:57:41 UTC 2018
    - 308 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue26430/a.go

    // Copyright 2018 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 a
    
    // typedef struct S ST;
    // static ST* F() { return 0; }
    import "C"
    
    func F1() {
    	C.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 260 bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/testdata/issue25301.go

    // Copyright 2018 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 issue25301
    
    type (
    	A = interface {
    		M()
    	}
    	T interface {
    		A
    	}
    	S struct{}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 24 16:47:26 UTC 2018
    - 280 bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/issue25008/issue25008a.go

    // Copyright 2018 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
    
    import "io"
    
    type A interface {
            io.Reader
    }
    
    func f(a A) {
            a.Read(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 260 bytes
    - Viewed (0)
  9. src/internal/syscall/unix/nonblocking_unix.go

    // Copyright 2018 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
    
    package unix
    
    import "syscall"
    
    func IsNonblock(fd int) (nonblocking bool, err error) {
    	flag, e1 := Fcntl(fd, syscall.F_GETFL, 0)
    	if e1 != nil {
    		return false, e1
    	}
    	return flag&syscall.O_NONBLOCK != 0, nil
    }
    
    func HasNonblockFlag(flag int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 09:15:25 UTC 2023
    - 468 bytes
    - Viewed (0)
  10. test/fixedbugs/issue26120.go

    // compile
    
    // Copyright 2018 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 26120: INDEX of 1-element but non-SSAable array
    // is mishandled when building SSA.
    
    package p
    
    type T [1]struct {
    	f    []int
    	i, j int
    }
    
    func F() {
    	var v T
    	f := func() T {
    		return v
    	}
    	_ = []int{}[f()[0].i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 29 12:05:05 UTC 2018
    - 397 bytes
    - Viewed (0)
Back to top