Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 710 for prefixer (0.14 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            current = current.parent;
            prefixer = new DefaultPrefixer();
            return this;
        }
    
        private void writeNode(Node node) {
            if (node.prefix == null) {
                node.prefix = node.isTopLevelNode() ? "" : node.parent.prefix + "    ";
            }
    
            StyledTextOutput output = new LinePrefixingStyledTextOutput(original, node.prefix, false);
            if (!node.valueWritten) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. 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)
  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. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    this.props=["transition","transition-property"],this.prefixes=e}add(e,t){let r,n,a=this.prefixes.add[e.prop],s=this.ruleVendorPrefixes(e),o=s||a&&a.prefixes||[],u=this.parse(e.value),c=u.map(m=>this.findProp(m)),f=[];if(c.some(m=>m[0]==="-"))return;for(let m of u){if(n=this.findProp(m),n[0]==="-")continue;let b=this.prefixes.add[n];if(!(!b||!b.prefixes))for(r of b.prefixes){if(s&&!s.some(y=>r.includes(y)))continue;let x=this.prefixes.prefixed(n,r);x!=="-ms-transform"&&!c.includes(x)&&(this.disab...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    //
    //   /* Plugin code below */
    //   void profiler_start(const TP_Profiler* profiler, TF_Status* status) {
    //     /* Enable profiler */
    //     ...
    //   }
    //
    //  void profiler_stop(const TP_Profiler* profiler, TF_Status* status) {
    //    /* Disable Profiler */
    //    ...
    //  }
    //
    //  void profiler_collect_data_xspace(const TP_Profiler* profiler, uint8_t*
    //  buffer, size_t* size_in_bytes, TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
Back to top