Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for a$ (0.17 sec)

  1. test/typeparam/mdempsky/4.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
    
    func F[T any](T) {
    Loop:
    	for {
    		break Loop
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 07 11:12:24 UTC 2021
    - 221 bytes
    - Viewed (0)
  2. test/typeparam/mdempsky/12.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 S[T any] struct {
    	F T
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 07 11:12:24 UTC 2021
    - 219 bytes
    - Viewed (0)
  3. test/typeparam/pairimp.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 Pair[F1, F2 any] struct {
    	Field1 F1
    	Field2 F2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 226 bytes
    - Viewed (0)
  4. test/fixedbugs/issue62498.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 One(L any) {
    	func() {
    		defer F(L)
    	}()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 11 16:02:11 UTC 2023
    - 235 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. test/fixedbugs/issue43633.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
    
    func F() bool {
    	{
    		x := false
    		_ = x
    	}
    	if false {
    		_ = func(x bool) {}
    	}
    	x := true
    	return x
    }
    
    func G() func() bool {
    	x := true
    	return func() bool {
    		{
    			x := false
    			_ = x
    		}
    		return x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 12 03:15:18 UTC 2021
    - 378 bytes
    - Viewed (0)
Back to top