Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for 202s (0.1 sec)

  1. src/internal/syscall/unix/nofollow_netbsd.go

    // Copyright 2024 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
    
    import "syscall"
    
    // Reference: https://man.netbsd.org/open.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 273 bytes
    - Viewed (0)
  2. src/internal/syscall/unix/siginfo_linux_other.go

    // Copyright 2023 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 && !(mips || mipsle || mips64 || mips64le)
    
    package unix
    
    type siErrnoCode struct {
    	Errno int32
    	Code  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 289 bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue48082.go

    // Copyright 2021 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 issue48082
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 264 bytes
    - Viewed (0)
  4. test/typeparam/mdempsky/8.dir/b.go

    // Copyright 2021 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 b
    
    import "./a"
    
    func init() {
    	a.F[func()]() // ERROR "does not satisfy comparable"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 04 19:07:27 UTC 2023
    - 255 bytes
    - Viewed (0)
  5. test/typeparam/issue49241.dir/a.go

    // Copyright 2021 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 T[P any] struct {
    	x P
    }
    
    type U struct {
    	a,b int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 18:31:53 UTC 2021
    - 229 bytes
    - Viewed (0)
  6. test/typeparam/issue49875.go

    // compile
    
    // Copyright 2021 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(args ...interface{}) {}
    
    func g() {
    	var args []any
    	f(args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 256 bytes
    - Viewed (0)
  7. test/typeparam/issue50121.dir/main.go

    // Copyright 2021 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 (
    	"./a"
    )
    
    //go:noinline
    func BuildInt() int {
    	return a.BuildInt()
    }
    
    func main() {
    	BuildInt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 281 bytes
    - Viewed (0)
  8. test/typeparam/issue50147.go

    // compile
    
    // Copyright 2021 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 Foo[T any, U interface{ *T }](x T) {
    	var _ U = &x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 241 bytes
    - Viewed (0)
  9. src/math/exp_asm.go

    // Copyright 2021 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 amd64 || arm64 || s390x
    
    package math
    
    const haveArchExp = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 268 bytes
    - Viewed (0)
  10. test/fixedbugs/issue44732.dir/foo/foo.go

    // Copyright 2021 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 foo
    
    type Foo struct {
    	updatecb func()
    }
    
    func NewFoo() *Foo {
    	return &Foo{updatecb: nil}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 08 19:43:19 UTC 2021
    - 262 bytes
    - Viewed (0)
Back to top