Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,702 for p$ (0.28 sec)

  1. test/fixedbugs/issue18895.dir/p.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 p
    
    func F() { // ERROR "can inline"
    	var v t
    	v.m() // ERROR "inlining call"
    }
    
    type t int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 15 04:17:30 UTC 2017
    - 298 bytes
    - Viewed (0)
  2. test/fixedbugs/issue19261.dir/p.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 p
    
    func F() { // ERROR "can inline F"
    	print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
    	print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
    	print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
    	print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
    	print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
    	print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 23:20:44 UTC 2017
    - 713 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/go/internal/gcimporter/testdata/p.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.
    
    // Input for TestIssue15517
    
    package p
    
    const C = 0
    
    var V int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 03:29:38 UTC 2016
    - 236 bytes
    - Viewed (0)
  6. test/fixedbugs/issue20682.dir/p.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 p
    
    import "strings"
    
    type T struct{}
    
    func (T) M() {
    	strings.HasPrefix("", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 15 22:01:35 UTC 2017
    - 250 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/cgo/internal/testsanitizers/testdata/asan_linkerx/p/p.go

    package p
    
    var S1 string
    var S2 string
    var S3 string
    var S4 string
    var S5 string
    var S6 string
    var S7 string
    var S8 string
    var S9 string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 152 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testshared/testdata/gcdata/p/p.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 p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 187 bytes
    - Viewed (0)
Back to top