Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testDivNonZeroExact (0.06 sec)

  1. guava-tests/test/com/google/common/math/BigIntegerMathTest.java

      private static final BigInteger BAD_FOR_ANDROID_Q = new BigInteger("-1");
    
      @GwtIncompatible // TODO
      @AndroidIncompatible // slow
      public void testDivNonZeroExact() {
        String runtimeName = System.getProperty("java.runtime.name");
        boolean isAndroid = runtimeName != null && runtimeName.contains("Android");
        for (BigInteger p : NONZERO_BIGINTEGER_CANDIDATES) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Nov 19 01:35:24 UTC 2025
    - 27.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/IntMathTest.java

                assertEquals("⌊" + p + "/" + q + "⌋", Math.floorDiv(p, q), IntMath.divide(p, q, mode));
              }
            }
          }
        }
      }
    
      @AndroidIncompatible // presumably slow
      public void testDivNonZeroExact() {
        for (int p : NONZERO_INTEGER_CANDIDATES) {
          for (int q : NONZERO_INTEGER_CANDIDATES) {
            // Skip some tests that fail due to GWT's non-compliant int implementation.
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 24.1K bytes
    - Viewed (0)
Back to top