Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Rx (0.02 sec)

  1. cmd/perf-tests.go

    		Error:         retError,
    	}, nil
    }
    
    // To collect RX stats during "mc support perf net"
    // RXSample holds the RX bytes for the duration between
    // the last peer to connect and the first peer to disconnect.
    // This is to improve the RX throughput accuracy.
    type netPerfRX struct {
    	RX                uint64    // RX bytes
    	lastToConnect     time.Time // time at which last peer to connect to us
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/net/lookup_windows_test.go

    	rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+mail exchanger\s*=\s*([0-9]+)\s*([a-z0-9.\-]+)$`)
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		pref, _, _ := dtoi(ans[2])
    		mx = append(mx, &MX{absDomainName(ans[3]), uint16(pref)})
    	}
    	// windows nslookup syntax
    	// gmail.com       MX preference = 30, mail exchanger = alt3.gmail-smtp-in.l.google.com
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

                    }
                }
            """
    
            when:
            //compilation should fail, as `rx.observers.Observable` is part of RxJava 1.x, which is a runtime-only dependency.
            file('src/main/java/App.java') << 'public class App { public void run() { rx.observers.Observers.empty(); } }'
    
            then:
            fails 'checkForRxJavaDependency', 'build'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    			}
    		}
    	}
    }
    
    func testFindAllIndex(t *testing.T, tc *testCase, x *Index, rx *regexp.Regexp, n int) {
    	res := x.FindAllIndex(rx, n)
    	exp := rx.FindAllStringIndex(tc.source, n)
    
    	// check that the lengths match
    	if len(res) != len(exp) {
    		t.Errorf("test %q, FindAllIndex %q (n = %d): expected %d results; got %d", tc.name, rx, n, len(exp), len(res))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

            Comparator<String> comparator = (l, r) -> {
                int lx = lifecycleIds.indexOf(l);
                int rx = lifecycleIds.indexOf(r);
    
                if (lx < 0 || rx < 0) {
                    return rx - lx;
                } else {
                    return lx - rx;
                }
            };
    
            Map<String, Lifecycle> lifecyclesMap = lookupLifecycles();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top