Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,112 for p$ (0.07 sec)

  1. 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)
  2. 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)
  3. test/typeparam/issue51219b.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 (
    	"./b"
    )
    
    // ResponseWriterMock mocks corde's ResponseWriter interface
    type ResponseWriterMock struct {
    	x b.InteractionRequest[[]byte]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 14:59:04 UTC 2022
    - 318 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/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
    func FromPkg() int32 { return 1024 }
    
    //export Divu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 299 bytes
    - Viewed (0)
  5. src/internal/trace/testdata/tests/go122-create-syscall-with-p.test

    -- expect --
    FAILURE ".*expected a proc but didn't have one.*"
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=34
    GoCreateSyscall dt=1 new_g=4
    ProcStatus dt=1 p=0 pstatus=2
    ProcStart dt=1 p=0 p_seq=1
    GoSyscallEndBlocked dt=1
    GoStart dt=1 g=4 g_seq=1
    GoSyscallBegin dt=1 p_seq=2 stack=0
    GoDestroySyscall dt=1
    GoCreateSyscall dt=1 new_g=4
    GoSyscallEnd dt=1
    GoSyscallBegin dt=1 p_seq=3 stack=0
    GoDestroySyscall dt=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 624 bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    // model the scenario correctly. Make sure we reject such
    // traces.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue47127.go

    func _[P any]() {
            type (
                    _[P any] interface{ *P | []P | chan P | map[string]P }
                    _[P any] interface{ P /* ERROR "term cannot be a type parameter" */ }
                    _[P any] interface{ ~P /* ERROR "type in term ~P cannot be a type parameter" */ }
                    _[P any] interface{ int | P /* ERROR "term cannot be a type parameter" */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/go/printer/testdata/generics.input

    func (x T[P]) m()
    func ((T[P])) m(x T[P]) P
    
    func _() {
    	type _ []T[P]
    	var _ []T[P]
    	_ = []T[P]{}
    }
    
    // type constraint literals with elided interfaces
    func _[P ~int, Q int | string]() {}
    func _[P struct{f int}, Q *P]() {}
    
    // various potentially ambiguous type parameter lists (issue #49482)
    type _[P *T,] struct{}
    type _[P T | T] struct{}
    type _[P T | T | T | T] struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 16:18:34 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. src/runtime/mem_sbrk.go

    		*p.next.ptr() = memHdr{}
    	} else {
    		bp.next = p.next
    	}
    	if uintptr(unsafe.Pointer(p))+p.size == bpn {
    		p.size += bp.size
    		p.next = bp.next
    		*bp = memHdr{}
    	} else {
    		p.next.set(bp)
    	}
    }
    
    func memCheck() {
    	if !memDebug {
    		return
    	}
    	for p := memFreelist.ptr(); p != nil && p.next != 0; p = p.next.ptr() {
    		if uintptr(unsafe.Pointer(p)) == uintptr(unsafe.Pointer(p.next)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/content/content.go

    	}
    	out, err := p.Runner.RunCmd("get pods -o yaml", p.IstioNamespace, p.KubeConfig, p.KubeContext, p.DryRun)
    	return map[string]string{
    		"pods": out,
    	}, err
    }
    
    // GetEvents returns events for all namespaces.
    func GetEvents(p *Params) (map[string]string, error) {
    	out, err := p.Runner.RunCmd("get events --all-namespaces -o wide --sort-by=.metadata.creationTimestamp", "", p.KubeConfig, p.KubeContext, p.DryRun)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top