Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for a$ (0.06 sec)

  1. test/fixedbugs/issue52856.dir/a.go

    // Copyright 2022 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
    
    func F() any {
    	return struct{ int }{0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:26:59 UTC 2022
    - 213 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/testdata/issue39777/a/a.go

    // Copyright 2020 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
    
    import "testshared/issue39777/b"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 224 bytes
    - Viewed (0)
  3. test/typeparam/issue48280.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 I[T any] interface {
    	F() T
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 00:56:09 UTC 2021
    - 223 bytes
    - Viewed (0)
  4. test/fixedbugs/issue58563.dir/a.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.
    
    package a
    
    func Start() interface{ Stop() } {
    	return new(Stopper)
    }
    
    type Stopper struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 20:26:10 UTC 2023
    - 281 bytes
    - Viewed (0)
  5. test/typeparam/minimp.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 Ordered interface {
    	~int | ~int64 | ~float64 | ~string
    }
    
    func Min[T Ordered](x, y T) T {
    	if x < y {
    		return x
    	}
    	return y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 305 bytes
    - Viewed (0)
  6. test/typeparam/mutualimp.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 X int
    
    func (x X) M() X { return x }
    
    func F[T interface{ M() U }, U interface{ M() T }]() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 337 bytes
    - Viewed (0)
  7. test/typeparam/issue49893.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 Option[T any] interface {
    	ToSeq() Seq[T]
    }
    
    type Seq[T any] []T
    
    func (r Seq[T]) Find(p func(v T) bool) Option[T] {
    	panic("")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 07:04:05 UTC 2021
    - 306 bytes
    - Viewed (0)
  8. src/cmd/link/testdata/dynimportvar/asm/a.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.
    
    // This is a separate package because we cannot have Go
    // assembly code and cgo code in the same package.
    
    //go:build darwin
    
    package asm
    
    //go:cgo_import_dynamic libc_mach_task_self_ mach_task_self_ "/usr/lib/libSystem.B.dylib"
    
    // load mach_task_self_ from assembly code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 19:39:32 UTC 2023
    - 463 bytes
    - Viewed (0)
  9. test/typeparam/gencrawler.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
    
    var V val[int]
    
    type val[T any] struct {
    	valx T
    }
    
    func (v *val[T]) Print() {
    	v.print1()
    }
    
    func (v *val[T]) print1() {
    	println(v.valx)
    }
    
    func (v *val[T]) fnprint1() {
    	println(v.valx)
    }
    
    func FnPrint[T any](v *val[T]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 10 19:51:05 UTC 2022
    - 412 bytes
    - Viewed (0)
  10. test/typeparam/issue51219b.dir/a.go

    // Copyright 2022 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 Interaction[DataT InteractionDataConstraint] struct {
    }
    
    type InteractionDataConstraint interface {
    	[]byte |
    		UserCommandInteractionData
    }
    
    type UserCommandInteractionData struct {
    	resolvedInteractionWithOptions
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 14:59:04 UTC 2022
    - 792 bytes
    - Viewed (0)
Back to top