Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Rx (0.03 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/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)
  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. 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)
  9. src/crypto/ecdsa/ecdsa.go

    	k, R, err := randomPoint(c, csprng)
    	if err != nil {
    		return nil, err
    	}
    
    	// kInv = k⁻¹
    	kInv := bigmod.NewNat()
    	inverse(c, kInv, k)
    
    	Rx, err := R.BytesX()
    	if err != nil {
    		return nil, err
    	}
    	r, err := bigmod.NewNat().SetOverflowingBytes(Rx, c.N)
    	if err != nil {
    		return nil, err
    	}
    
    	// The spec wants us to retry here, but the chance of hitting this condition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/go/types/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-F\d]*`)
    	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: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top