Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,331 for p$ (0.04 sec)

  1. src/cmd/internal/obj/x86/obj6.go

    		// But it should be unnecessary.
    		if (p.As == AMOVQ || p.As == AMOVL) && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_TLS && p.To.Type == obj.TYPE_REG && REG_AX <= p.To.Reg && p.To.Reg <= REG_R15 && ctxt.Headtype != objabi.Hsolaris {
    			obj.Nopout(p)
    		}
    		if p.From.Type == obj.TYPE_MEM && p.From.Index == REG_TLS && REG_AX <= p.From.Reg && p.From.Reg <= REG_R15 {
    			p.From.Reg = REG_TLS
    			p.From.Scale = 0
    			p.From.Index = REG_NONE
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/cmd/testdata/dns-uid-gid.golden

    iptables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j RETURN
    ip6tables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j RETURN
    iptables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. security/pkg/credentialfetcher/plugin/gce.go

    	p.rotationTicker = time.NewTicker(rotationInterval)
    	for {
    		select {
    		case <-p.rotationTicker.C:
    			p.rotate()
    		case <-p.closing:
    			if p.rotationTicker != nil {
    				p.rotationTicker.Stop()
    			}
    			return
    		}
    	}
    }
    
    func (p *GCEPlugin) rotate() {
    	if p.shouldRotate(time.Now()) {
    		if _, err := p.GetPlatformCredential(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue63563.go

    )
    
    func _[P int8 | uint8]() {
    	_ = P(0)
    	_ = P(1 /* ERROR "constant 255 overflows int8 (in P)" */ <<8 - 1)
    }
    
    func _[P int16 | uint16]() {
    	_ = P(0)
    	_ = P(1 /* ERROR "constant 65535 overflows int16 (in P)" */ <<16 - 1)
    }
    
    func _[P int32 | uint32]() {
    	_ = P(0)
    	_ = P(1 /* ERROR "constant 4294967295 overflows int32 (in P)" */ <<32 - 1)
    }
    
    func _[P int64 | uint64]() {
    	_ = P(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. test/rangegen.go

    		p(b, "	}\n")
    		p(b, "	o.log(`L%ssel bot`)\n", s)
    		p(b, "	}\n")
    		p(b, "	o.log(`L%ssw bot`)\n", s)
    		p(b, "	}\n")
    		p(b, "	o.log(`L%sfor bot`)\n", s)
    		p(b, "	}\n")
    		p(b, "	o.log(`done%s`)\n", s)
    		p(b, "goto L%sb; L%sb: o.log(`L%sb`)\n", s, s, s)
    	}
    	return code
    }
    
    var testCode = `
    func %s() {
    	all := %#v
    	for i := 0; i < len(all); i++ {
    		c := all[i]
    		outFunc := run(%s, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 23:35:19 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. src/runtime/alg.go

    func memequal64(p, q unsafe.Pointer) bool {
    	return *(*int64)(p) == *(*int64)(q)
    }
    func memequal128(p, q unsafe.Pointer) bool {
    	return *(*[2]int64)(p) == *(*[2]int64)(q)
    }
    func f32equal(p, q unsafe.Pointer) bool {
    	return *(*float32)(p) == *(*float32)(q)
    }
    func f64equal(p, q unsafe.Pointer) bool {
    	return *(*float64)(p) == *(*float64)(q)
    }
    func c64equal(p, q unsafe.Pointer) bool {
    	return *(*complex64)(p) == *(*complex64)(q)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/go/build/constraint/expr.go

    		p.pos = p.i
    		p.i++
    		p.tok = p.s[p.pos:p.i]
    		return
    
    	case '&', '|':
    		if p.i+1 >= len(p.s) || p.s[p.i+1] != p.s[p.i] {
    			panic(&SyntaxError{Offset: p.i, Err: "invalid syntax at " + string(rune(p.s[p.i]))})
    		}
    		p.pos = p.i
    		p.i += 2
    		p.tok = p.s[p.pos:p.i]
    		return
    	}
    
    	tag := p.s[p.i:]
    	for i, c := range tag {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/object_test.go

    	{"type t func(int)", "t", "type p.t func(int)", false},
    	{"type t[P any] struct{f P}", "t", "type p.t[P any] struct{f P}", false},
    	{"type t[P any] struct{f P}", "t.P", "type parameter P any", false},
    	{"type C interface{m()}; type t[P C] struct{}", "t.P", "type parameter P p.C", false},
    
    	{"type t = struct{f int}", "t", "type p.t = struct{f int}", false},
    	{"type t = func(int)", "t", "type p.t = func(int)", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/obj7.go

    		p.To.Reg = REGSP
    		p.Spadj = frameSize
    
    		// Save FP.
    		p = obj.Appendp(p, c.newprog)
    		p.As = AMOVD
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = REGFP
    		p.To.Type = obj.TYPE_MEM
    		p.To.Reg = REGSP
    		p.To.Offset = -8
    
    		p = obj.Appendp(p, c.newprog)
    		p.As = ASUB
    		p.From.Type = obj.TYPE_CONST
    		p.From.Offset = 8
    		p.Reg = REGSP
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = REGFP
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/generate.go

    		// this point, and [N]∞ = ∞.
    		if i != 0 {
    			p.Double(p)
    			p.Double(p)
    			p.Double(p)
    			p.Double(p)
    		}
    
    		windowValue := byte >> 4
    		table.Select(t, windowValue)
    		p.Add(p, t)
    
    		p.Double(p)
    		p.Double(p)
    		p.Double(p)
    		p.Double(p)
    
    		windowValue = byte & 0b1111
    		table.Select(t, windowValue)
    		p.Add(p, t)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top