Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 604 for p$ (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/hash64.go

    		a = r8(p)
    		b = r8(add(p, s-8))
    	default:
    		l := s
    		if l > 48 {
    			seed1 := seed
    			seed2 := seed
    			for ; l > 48; l -= 48 {
    				seed = mix(r8(p)^hashkey[1], r8(add(p, 8))^seed)
    				seed1 = mix(r8(add(p, 16))^hashkey[2], r8(add(p, 24))^seed1)
    				seed2 = mix(r8(add(p, 32))^hashkey[3], r8(add(p, 40))^seed2)
    				p = add(p, 48)
    			}
    			seed ^= seed1 ^ seed2
    		}
    		for ; l > 16; l -= 16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 17:39:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/pushqueue_test.go

    		p.Enqueue(proxies[1], &model.PushRequest{})
    		p.Enqueue(proxies[0], &model.PushRequest{})
    
    		ExpectDequeue(t, p, proxies[0])
    		ExpectDequeue(t, p, proxies[1])
    		ExpectTimeout(t, p)
    	})
    
    	t.Run("add and remove and markdone", func(t *testing.T) {
    		t.Parallel()
    		p := NewPushQueue()
    		defer p.ShutDown()
    
    		p.Enqueue(proxies[0], &model.PushRequest{})
    		ExpectDequeue(t, p, proxies[0])
    		p.MarkDone(proxies[0])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/go/printer/gobuild.go

    		// Skip leading space at beginning of line.
    		blank := true
    		for pos < len(p.output) && (p.output[pos] == ' ' || p.output[pos] == '\t') {
    			pos++
    		}
    		// Skip over // comment if any.
    		if pos+3 < len(p.output) && p.output[pos] == tabwriter.Escape && p.output[pos+1] == '/' && p.output[pos+2] == '/' {
    			blank = false
    			for pos < len(p.output) && !isNL(p.output[pos]) {
    				pos++
    			}
    		}
    		// Skip over \n at end of line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/dns-uid-gid.golden

    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 2 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -d 127.0.0.53/32 -j REDIRECT --to-port 15053
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/os/exec_plan9.go

    func (p *ProcessState) Pid() int {
    	return p.pid
    }
    
    func (p *ProcessState) exited() bool {
    	return p.status.Exited()
    }
    
    func (p *ProcessState) success() bool {
    	return p.status.ExitStatus() == 0
    }
    
    func (p *ProcessState) sys() any {
    	return p.status
    }
    
    func (p *ProcessState) sysUsage() any {
    	return p.status
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-uid-gid.golden

    ip6tables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 2 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

                assertThat(p, nullValue())
            }
    
            withMockForProject(existing = "p" to null) {
    
                val p: Int? by project
                assertThat(p, nullValue())
            }
        }
    
        @Test
        fun `nullable delegated property access of non-existing gradle property`() {
    
            withMockForSettings(absent = "p") {
    
                val p: Int? by settings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top