Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 91 for Rx (0.02 sec)

  1. src/regexp/onepass.go

    		*newLow += 2
    		ix += 2
    		next = append(next, pc)
    		return true
    	}
    
    	for lx < leftLen || rx < rightLen {
    		switch {
    		case rx >= rightLen:
    			ok = extend(&lx, leftRunes, leftPC)
    		case lx >= leftLen:
    			ok = extend(&rx, rightRunes, rightPC)
    		case (*rightRunes)[rx] < (*leftRunes)[lx]:
    			ok = extend(&rx, rightRunes, rightPC)
    		default:
    			ok = extend(&lx, leftRunes, leftPC)
    		}
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/obj9.go

    		s.Set(obj.AttrStatic, true)
    		c.ctxt.Data = append(c.ctxt.Data, s)
    		s.WriteAddr(c.ctxt, 0, 8, source.Sym, 0)
    	})
    
    	if source.Type == obj.TYPE_ADDR {
    		// MOVD $sym, Rx becomes MOVD symtoc, Rx
    		// MOVD $sym+<off>, Rx becomes MOVD symtoc, Rx; ADD <off>, Rx
    		p.From.Type = obj.TYPE_MEM
    		p.From.Sym = symtoc
    		p.From.Name = obj.NAME_TOCREF
    
    		if p.From.Offset != 0 {
    			q := obj.Appendp(p, c.newprog)
    			q.As = AADD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  3. src/cmd/vet/vet_test.go

    			})
    			re := cache[rx]
    			if re == nil {
    				var err error
    				re, err = regexp.Compile(rx)
    				if err != nil {
    					log.Fatalf("%s:%d: invalid regexp \"%#q\" in ERROR line: %v", file, lineNum, rx, err)
    				}
    				cache[rx] = re
    			}
    			prefix := fmt.Sprintf("%s:%d", short, lineNum)
    			errs = append(errs, wantedError{
    				reStr:   rx,
    				re:      re,
    				prefix:  prefix,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

        llvm::ArrayRef<int64_t> lhs_shape =
            mlir::cast<RankedTensorType>(bmm_op.getX().getType()).getShape();
        int rX = lhs_shape.size() - 2;
        int cX = lhs_shape.size() - 1;
        if (bmm_op.getAdjX()) {
          rX = lhs_shape.size() - 1;
          cX = lhs_shape.size() - 2;
        }
    
        if (lhs_shape[rX] != 1) {
          return failure();
        }
    
        llvm::ArrayRef<int64_t> rhs_shape =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. build/build-image/Dockerfile

    # Make log messages use the right timezone
    ADD localtime /etc/localtime
    RUN chmod a+r /etc/localtime
    
    # Set up rsyncd
    ADD rsyncd.password /
    RUN chmod a+r /rsyncd.password
    ADD rsyncd.sh /
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/example_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// Print the tree of scopes.
    	// For determinism, we redact addresses.
    	var buf strings.Builder
    	pkg.Scope().WriteTo(&buf, 0, true)
    	rx := regexp.MustCompile(` 0x[a-fA-F0-9]*`)
    	fmt.Println(rx.ReplaceAllString(buf.String(), ""))
    
    	// Output:
    	// package "temperature" scope {
    	// .  const temperature.Boiling temperature.Celsius
    	// .  type temperature.Celsius float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    // their valid instruction encodings.
    
    #include "../../../../../runtime/textflag.h"
    
    // In case of index mode instructions, usage of
    // (Rx)(R0) is equivalent to (Rx+R0)
    // In case of base+displacement mode instructions if
    // the offset is 0, usage of (Rx) is equivalent to 0(Rx)
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// move constants
    	MOVD $1, R3                     // 38600001
    	MOVD $-1, R4                    // 3880ffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. tools/packaging/postinst.sh

    mkdir -p /etc/certs
    chown istio-proxy.istio-proxy /etc/certs
    
    chown istio-proxy.istio-proxy /var/lib/istio/envoy /var/lib/istio/config /var/log/istio /var/lib/istio/config/mesh /var/lib/istio/proxy
    chmod o+rx /usr/local/bin/{envoy,pilot-agent}
    
    # pilot-agent and envoy may run with effective uid 0 in order to run envoy with
    # CAP_NET_ADMIN, so any iptables rule matching on "-m owner --uid-owner
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 10 18:31:12 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	fmt.Fprintln(w, separator)
    	fmt.Fprintln(w, legend)
    	var flatSum int64
    
    	rx := rpt.options.Symbol
    	matched := 0
    	for _, n := range g.Nodes {
    		name, flat, cum := n.Info.PrintableName(), n.FlatValue(), n.CumValue()
    
    		// Skip any entries that do not match the regexp (for the "peek" command).
    		if rx != nil && !rx.MatchString(name) {
    			continue
    		}
    		matched++
    
    		fmt.Fprintln(w, separator)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/objz.go

    	// ADD instruction.
    	if p.From.Type == obj.TYPE_ADDR && p.From.Name == obj.NAME_EXTERN && !p.From.Sym.Local() {
    		// MOVD $sym, Rx becomes MOVD sym@GOT, Rx
    		// MOVD $sym+<off>, Rx becomes MOVD sym@GOT, Rx or REGTMP2; MOVD $<off>(Rx or REGTMP2), Rx
    		if p.To.Type != obj.TYPE_REG || p.As != AMOVD {
    			c.ctxt.Diag("do not know how to handle LEA-type insn to non-register in %v with -dynlink", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top