Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for a$ (0.06 sec)

  1. 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)
  2. test/fixedbugs/issue33020.dir/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 G1 int
    var G2 int
    var G3 int
    var G4 int
    var G5 int
    var G6 int
    var G7 int
    var G8 int
    var G9 int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 11:34:23 UTC 2019
    - 282 bytes
    - Viewed (0)
  3. 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)
  4. test/fixedbugs/issue15646.dir/a.go

    // Copyright 2016 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 struct{}
    
    func (T) m() string {
    	return "m"
    }
    
    func (*T) mp() string {
    	return "mp"
    }
    
    func F() func(T) string {
    	return T.m // method expression
    }
    
    func Fp() func(*T) string {
    	return (*T).mp // method expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 19:23:04 UTC 2016
    - 394 bytes
    - Viewed (0)
  5. test/fixedbugs/bug504.dir/a.go

    // Copyright 2017 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: Thu Oct 12 19:02:09 UTC 2017
    - 188 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. test/typeparam/mdempsky/10.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 Jul 07 11:12:24 UTC 2021
    - 204 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/issue19699.dir/a.go

    // Copyright 2017 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() {
    l1:
    	if false {
    		goto l1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 17:13:30 UTC 2017
    - 213 bytes
    - Viewed (0)
Back to top