Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 7,702 for p$ (0.03 sec)

  1. src/runtime/testdata/testprog/checkptr.go

    	sink2 = p
    	sink2 = unsafe.Slice(p, 100)
    }
    
    func CheckPtrStringOK() {
    	p := new([4]byte)
    	sink2 = unsafe.String(&p[1], 3)
    }
    
    func CheckPtrStringFail() {
    	p := new(byte)
    	sink2 = p
    	sink2 = unsafe.String(p, 100)
    }
    
    func CheckPtrAlignmentNested() {
    	s := make([]int8, 100)
    	p := unsafe.Pointer(&s[0])
    	n := 9
    	_ = ((*[10]int8)(unsafe.Pointer((*[10]int64)(unsafe.Pointer(&p)))))[:n:n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 17:15:15 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/duff_arm.s

    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    	MOVW.P	R0, 4(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 05:33:40 UTC 2017
    - 7.1K bytes
    - Viewed (0)
  3. 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)
  4. src/fmt/print.go

    		p.buf.writeString(reflect.TypeOf(p.arg).String())
    		p.buf.writeByte('=')
    		p.printArg(p.arg, 'v')
    	case p.value.IsValid():
    		p.buf.writeString(p.value.Type().String())
    		p.buf.writeByte('=')
    		p.printValue(p.value, 'v', 0)
    	default:
    		p.buf.writeString(nilAngleString)
    	}
    	p.buf.writeByte(')')
    	p.erroring = false
    }
    
    func (p *pp) fmtBool(v bool, verb rune) {
    	switch verb {
    	case 't', 'v':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    :  s:http h:example.org p:/foo/:
    :a  s:http h:example.org p:/foo/:a
    :/  s:http h:example.org p:/foo/:/
    :\\  s:http h:example.org p:/foo/:/
    :#  s:http h:example.org p:/foo/: f:#
    \#  s:http h:example.org p:/foo/bar f:#
    \#/  s:http h:example.org p:/foo/bar f:#/
    \#\\  s:http h:example.org p:/foo/bar f:#\\
    \#;?  s:http h:example.org p:/foo/bar f:#;?
    ?  s:http h:example.org p:/foo/bar q:?
    /  s:http h:example.org p:/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue60377.go

    	g[int](x)    // int is ok for P
    	g[string](x) // string is also ok for P!
    }
    
    // This is analogous to the above example,
    // but uses two interface types of the same structure.
    
    type T2[P any] interface{ m() }
    
    func _() {
    	var x T2[int]
    	g /* ERROR "cannot infer P" */ (x)
    	g[int](x)    // int is ok for P
    	g[string](x) // string is also ok for P!
    }
    
    // Analogous to the T2 example but using an unparameterized interface T3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue50417.go

    // implications on the spec. See issue #51576.
    
    package p
    
    type Sf struct {
            f int
    }
    
    func f0[P Sf](p P) {
            _ = p.f // ERROR "p.f undefined"
            p.f /* ERROR "p.f undefined" */ = 0
    }
    
    func f0t[P ~struct{f int}](p P) {
            _ = p.f // ERROR "p.f undefined"
            p.f /* ERROR "p.f undefined" */ = 0
    }
    
    var _ = f0[Sf]
    var _ = f0t[Sf]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/printer_test.go

    	{"package p; type _[P (T),] struct{}", "package p; type _[P T] struct{}"},
    	{"package p; type _[P (T), _ any] struct{}", "package p; type _[P T, _ any] struct{}"},
    
    	{"package p; type _[P (*struct{})] struct{}", "package p; type _[P *struct{}] struct{}"},
    	{"package p; type _[P ([]int)] struct{}", "package p; type _[P []int] struct{}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 17:08:18 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/hilbert_test.go

    		g.p("\n")
    	}
    	g.p(")\n\n")
    }
    
    func (g *gen) product(n int) {
    	g.p(`// Product matrix
    const (
    `)
    	for i := 0; i < n; i++ {
    		for j := 0; j < n; j++ {
    			g.p("\tp%d_%d = ", i, j)
    			for k := 0; k < n; k++ {
    				if k > 0 {
    					g.p(" + ")
    				}
    				g.p("h%d_%d*i%d_%d", i, k, k, j)
    			}
    			g.p("\n")
    		}
    		g.p("\n")
    	}
    	g.p(")\n\n")
    }
    
    func (g *gen) verify(n int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:00:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/memmove_test.go

    	p := new([14]byte)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [14]byte{}
    	}
    }
    
    func BenchmarkClearFat15(b *testing.B) {
    	p := new([15]byte)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [15]byte{}
    	}
    }
    
    func BenchmarkClearFat16(b *testing.B) {
    	p := new([16 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [16 / 4]uint32{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top