Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,140 for p$ (0.03 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/method3/p/p.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 p
    
    type T int
    
    func (T) m() { println("m") }
    
    type I interface{ m() }
    
    func F() {
    	i.m()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 277 bytes
    - Viewed (0)
  2. test/fixedbugs/issue49143.dir/p.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 p
    
    import (
    	"./c"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 27 05:33:58 UTC 2021
    - 212 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcarchive/testdata/p/p.go

    // Copyright 2015 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
    
    import "C"
    
    //export FromPkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 237 bytes
    - Viewed (0)
  4. test/typeparam/issue48185a.dir/p.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 p
    
    type MarshalOptions struct {
    	Marshalers *Marshalers
    }
    
    type Encoder struct {}
    
    type Marshalers = marshalers[MarshalOptions, Encoder]
    
    type marshalers[Options, Coder any] struct{}
    
    func MarshalFuncV1[T any](fn func(T) ([]byte, error)) *Marshalers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 07 17:38:14 UTC 2021
    - 444 bytes
    - Viewed (0)
  5. test/fixedbugs/issue52128.dir/p.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 p
    
    import (
    	"./a"
    	"./b"
    )
    
    func f() {
    	a.NewWithFuncI((&b.S{}).M1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:20:41 UTC 2022
    - 239 bytes
    - Viewed (0)
  6. test/fixedbugs/issue49094.dir/p.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 p
    
    import (
    	"./b"
    )
    
    type S struct{}
    
    func (S) M() {
    	b.M(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 22 00:57:18 UTC 2021
    - 234 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/testdata/method2/p/p.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 p
    
    type T int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 213 bytes
    - Viewed (0)
  8. test/typeparam/issue51836.dir/p.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 p
    
    import (
    	a "./aa"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 21:38:10 UTC 2022
    - 210 bytes
    - Viewed (0)
  9. src/cmd/link/testdata/linkname/p/p.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 p
    
    import _ "unsafe"
    
    // f1 is pushed from main.
    //
    //go:linkname f1
    func f1()
    
    // Push f2 to main.
    //
    //go:linkname f2 main.f2
    func f2() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 328 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/testdata/issue53989/p/p.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 p
    
    import (
    	"fmt"
    	"runtime"
    )
    
    var y int
    
    //go:noinline
    func Square(x int) {
    	var pc0, pc1 [1]uintptr
    	runtime.Callers(1, pc0[:]) // get PC at entry
    
    	// a switch using jump table
    	switch x {
    	case 1:
    		y = 1
    	case 2:
    		y = 4
    	case 3:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 826 bytes
    - Viewed (0)
Back to top