Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,433 for p$ (0.05 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    			p.As = AORI
    		case AXOR:
    			p.As = AXORI
    		case ASLL:
    			p.As = ASLLI
    		case ASRL:
    			p.As = ASRLI
    		case ASRA:
    			p.As = ASRAI
    		case AADDW:
    			p.As = AADDIW
    		case ASUBW:
    			p.As, p.From.Offset = AADDIW, -p.From.Offset
    		case ASLLW:
    			p.As = ASLLIW
    		case ASRLW:
    			p.As = ASRLIW
    		case ASRAW:
    			p.As = ASRAIW
    		case AROR:
    			p.As = ARORI
    		case ARORW:
    			p.As = ARORIW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	p.Pc = pc
    	var m int
    	var o *Optab
    	for p = p.Link; p != nil; p = p.Link {
    		p.Pc = pc
    		o = c.oplook(p)
    		m = o.size(c.ctxt, p)
    		if m == 0 {
    			switch p.As {
    			case obj.APCALIGN, obj.APCALIGNMAX:
    				m = obj.AlignmentPadding(int32(pc), p, ctxt, cursym)
    				break
    			case obj.ANOP, obj.AFUNCDATA, obj.APCDATA:
    				continue
    			default:
    				c.ctxt.Diag("zero-width instruction\n%v", p)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    }
    
    // Obj returns the inner Pod.
    func (p *PodWrapper) Obj() *v1.Pod {
    	return &p.Pod
    }
    
    // Name sets `s` as the name of the inner pod.
    func (p *PodWrapper) Name(s string) *PodWrapper {
    	p.SetName(s)
    	return p
    }
    
    // UID sets `s` as the UID of the inner pod.
    func (p *PodWrapper) UID(s string) *PodWrapper {
    	p.SetUID(types.UID(s))
    	return p
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    }
    
    func (in *input) _byte(p int) byte {
    	if in.bytes == nil {
    		return in.str[p]
    	}
    	return in.bytes[p]
    }
    
    func (in *input) skipASCII(p, max int) int {
    	if in.bytes == nil {
    		for ; p < max && in.str[p] < utf8.RuneSelf; p++ {
    		}
    	} else {
    		for ; p < max && in.bytes[p] < utf8.RuneSelf; p++ {
    		}
    	}
    	return p
    }
    
    func (in *input) skipContinuationBytes(p int) int {
    	if in.bytes == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/internal/profile/encode.go

    	p.DropFrames, err = getString(p.stringTable, &p.dropFramesX, err)
    	p.KeepFrames, err = getString(p.stringTable, &p.keepFramesX, err)
    
    	if pt := p.PeriodType; pt == nil {
    		p.PeriodType = &ValueType{}
    	}
    
    	if pt := p.PeriodType; pt != nil {
    		pt.Type, err = getString(p.stringTable, &pt.typeX, err)
    		pt.Unit, err = getString(p.stringTable, &pt.unitX, err)
    	}
    	for _, i := range p.commentX {
    		var c string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. src/net/mail/message.go

    func (p *addrParser) skipSpace() {
    	p.s = strings.TrimLeft(p.s, " \t")
    }
    
    func (p *addrParser) peek() byte {
    	return p.s[0]
    }
    
    func (p *addrParser) empty() bool {
    	return p.len() == 0
    }
    
    func (p *addrParser) len() int {
    	return len(p.s)
    }
    
    // skipCFWS skips CFWS as defined in RFC5322.
    func (p *addrParser) skipCFWS() bool {
    	p.skipSpace()
    
    	for {
    		if !p.consume('(') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K 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. src/encoding/xml/marshal.go

    		p.depth--
    		if p.indentedIn {
    			p.indentedIn = false
    			return
    		}
    		p.indentedIn = false
    	}
    	if p.putNewline {
    		p.WriteByte('\n')
    	} else {
    		p.putNewline = true
    	}
    	if len(p.prefix) > 0 {
    		p.WriteString(p.prefix)
    	}
    	if len(p.indent) > 0 {
    		for i := 0; i < p.depth; i++ {
    			p.WriteString(p.indent)
    		}
    	}
    	if depthDelta > 0 {
    		p.depth++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. src/go/scanner/errors.go

    func (p *ErrorList) Add(pos token.Position, msg string) {
    	*p = append(*p, &Error{pos, msg})
    }
    
    // Reset resets an [ErrorList] to no errors.
    func (p *ErrorList) Reset() { *p = (*p)[0:0] }
    
    // [ErrorList] implements the sort Interface.
    func (p ErrorList) Len() int      { return len(p) }
    func (p ErrorList) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
    
    func (p ErrorList) Less(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top