Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for a$ (0.1 sec)

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

    // Copyright 2019 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 pl int
    
    type NoitfStruct struct {
    	F int
    	G int
    }
    
    //go:nointerface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 18:43:12 UTC 2021
    - 288 bytes
    - Viewed (0)
  2. test/fixedbugs/issue47131.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 MyInt int
    
    type MyIntAlias = MyInt
    
    func (mia *MyIntAlias) Get() int {
    	return int(*mia)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 13 20:47:06 UTC 2021
    - 267 bytes
    - Viewed (0)
  3. test/typeparam/mincheck.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
    }
    
    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
    - 292 bytes
    - Viewed (0)
  4. test/fixedbugs/issue52128.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 I interface{}
    
    type F func()
    
    type s struct {
    	f F
    }
    
    func NewWithF(f F) *s {
    	return &s{f: f}
    }
    
    func NewWithFuncI(func() I) *s {
    	return &s{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:20:41 UTC 2022
    - 322 bytes
    - Viewed (0)
  5. src/cmd/cover/testdata/pkgcfg/a/a.go

    package a
    
    type Atyp int
    
    func (ap *Atyp) Set(q int) {
    	*ap = Atyp(q)
    }
    
    func (ap Atyp) Get() int {
    	inter := func(q Atyp) int {
    		return int(q)
    	}
    	return inter(ap)
    }
    
    var afunc = func(x int) int {
    	return x + 1
    }
    var Avar = afunc(42)
    
    func A(x int) int {
    	if x == 0 {
    		return 22
    	} else if x == 1 {
    		return 33
    	}
    	return 44
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:48:40 UTC 2022
    - 330 bytes
    - Viewed (0)
  6. test/typeparam/issue50841.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 Marshal[foobar any]() {
    	_ = NewEncoder[foobar]()
    }
    
    func NewEncoder[foobar any]() *Encoder[foobar] {
    	return nil
    }
    
    type Encoder[foobar any] struct {
    }
    
    func (e *Encoder[foobar]) EncodeToken(t Token[foobar]) {
    
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 27 05:30:27 UTC 2022
    - 418 bytes
    - Viewed (0)
  7. test/fixedbugs/issue50788.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 T[P any] struct {
    	_ P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 17:48:24 UTC 2022
    - 201 bytes
    - Viewed (0)
  8. test/fixedbugs/issue52862.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() complex128 {
    	return 0+0i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 27 16:12:51 UTC 2022
    - 208 bytes
    - Viewed (0)
  9. test/typeparam/issue46461b.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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 00:56:09 UTC 2021
    - 206 bytes
    - Viewed (0)
  10. test/fixedbugs/issue51291.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 TypeA string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 18 00:45:20 UTC 2022
    - 213 bytes
    - Viewed (0)
Back to top