Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,367 for prefixof (0.16 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	PrefixSS Prefix = 0x36 // SS segment override
    	PrefixDS Prefix = 0x3E // DS segment override
    	PrefixFS Prefix = 0x64 // FS segment override
    	PrefixGS Prefix = 0x65 // GS segment override
    
    	// Branch prediction.
    	PrefixPN Prefix = 0x12E // predict not taken (conditional branch only)
    	PrefixPT Prefix = 0x13E // predict taken (conditional branch only)
    
    	// Size attributes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    )
    
    const (
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Using spare bit to make leading [E]VEX encoding byte different from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	"pclmulhqhqdq",
    }
    
    func countPrefix(inst *Inst, target Prefix) int {
    	n := 0
    	for _, p := range inst.Prefix {
    		if p&0xFF == target&0xFF {
    			n++
    		}
    	}
    	return n
    }
    
    func markLastImplicit(inst *Inst, prefix Prefix) bool {
    	for i := len(inst.Prefix) - 1; i >= 0; i-- {
    		p := inst.Prefix[i]
    		if p&0xFF == prefix {
    			inst.Prefix[i] |= PrefixImplicit
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    					if vex == prefix {
    						ok = true
    					}
    				} else if vex != 0 && (prefix == 0x0F || prefix == 0x0F38 || prefix == 0x0F3A ||
    					prefix == 0x66 || prefix == 0xF2 || prefix == 0xF3) {
    					var vexM, vexP Prefix
    					if vex == 0xC5 {
    						vexM = 1 // 2 byte vex always implies 0F
    						vexP = inst.Prefix[vexIndex+1]
    					} else {
    						vexM = inst.Prefix[vexIndex+1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    	FixSegment:
    		for i := len(inst.Prefix) - 1; i >= 0; i-- {
    			p := inst.Prefix[i] & 0xFF
    			switch p {
    			case PrefixCS, PrefixES, PrefixFS, PrefixGS, PrefixSS:
    				if inst.Mode != 64 || p == PrefixFS || p == PrefixGS {
    					args = append(args, strings.ToLower((inst.Prefix[i] & 0xFF).String()))
    					break FixSegment
    				}
    			case PrefixDS:
    				if inst.Mode != 64 {
    					break FixSegment
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  6. releasenotes/notes/kubernetes-ingress-prefix.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
      - |
        **Fixed** a bug in Kubernetes Ingress causing paths with prefixes of the form `/foo` to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 06:19:37 UTC 2021
    - 235 bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/prefix.go

    package lifecycle
    
    import (
    	"encoding/xml"
    )
    
    // Prefix holds the prefix xml tag in <Rule> and <Filter>
    type Prefix struct {
    	string
    	set    bool
    	Unused struct{} // Needed for GOB compatibility
    }
    
    // UnmarshalXML - decodes XML data.
    func (p *Prefix) UnmarshalXML(d *xml.Decoder, start xml.StartElement) (err error) {
    	var s string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 14:45:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/LinePrefixingStyledTextOutput.java

           this(output, prefix, true);
        }
    
        public LinePrefixingStyledTextOutput(StyledTextOutput output, CharSequence prefix, boolean prefixFirstLine) {
            this.output = output;
            this.prefix = prefix;
            this.prefixFirstLine = prefixFirstLine;
        }
    
        @Override
        protected void doLineText(CharSequence text) {
            if (!prefixed && prefixFirstLine) {
                output.text(prefix);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/kubelet/sysctl/allowlist.go

    		sysctls:  map[string]utilsysctl.Namespace{},
    		prefixes: map[string]utilsysctl.Namespace{},
    	}
    
    	for _, s := range patterns {
    		if !policyvalidation.IsValidSysctlPattern(s) {
    			return nil, fmt.Errorf("sysctl %q must have at most %d characters and match regex %s",
    				s,
    				validation.SysctlMaxLength,
    				policyvalidation.SysctlContainSlashPatternFmt,
    			)
    		}
    		ns, sysctlOrPrefix, prefixed := utilsysctl.GetNamespace(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. cni/pkg/install/testdata/istio-cni-prefixed.conf

    {
      "cniVersion": "0.3.1",
      "name": "istio-cni",
      "type": "prefix-istio-cni",
      "plugin_log_level": "debug",
      "kubernetes": {
          "kubeconfig": "/path/to/kubeconfig",
          "cni_bin_dir": "/path/cni/bin"
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 215 bytes
    - Viewed (0)
Back to top