Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for toBigInteger (0.08 seconds)

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

      private static final BigDecimal MIN_LONG_AS_BIG_DECIMAL = BigDecimal.valueOf(Long.MIN_VALUE);
    
      public void testConstantsMaxFactorial() {
        BigInteger maxDoubleValue = BigDecimal.valueOf(Double.MAX_VALUE).toBigInteger();
        assertThat(BigIntegerMath.factorial(DoubleMath.MAX_FACTORIAL)).isAtMost(maxDoubleValue);
        assertThat(BigIntegerMath.factorial(DoubleMath.MAX_FACTORIAL + 1))
            .isGreaterThan(maxDoubleValue);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Feb 03 16:20:39 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/math/DoubleMathTest.java

      private static final BigDecimal MIN_LONG_AS_BIG_DECIMAL = BigDecimal.valueOf(Long.MIN_VALUE);
    
      public void testConstantsMaxFactorial() {
        BigInteger maxDoubleValue = BigDecimal.valueOf(Double.MAX_VALUE).toBigInteger();
        assertThat(BigIntegerMath.factorial(DoubleMath.MAX_FACTORIAL)).isAtMost(maxDoubleValue);
        assertThat(BigIntegerMath.factorial(DoubleMath.MAX_FACTORIAL + 1))
            .isGreaterThan(maxDoubleValue);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Feb 03 16:20:39 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * @param address {@link InetAddress} to convert
       * @return {@code BigInteger} representation of the address
       * @since 28.2
       */
      public static BigInteger toBigInteger(InetAddress address) {
        return new BigInteger(1, address.getAddress());
      }
    
      /**
       * Returns an Inet4Address having the integer value specified by the argument.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 47.7K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/net/InetAddressesTest.java

      private static void checkBigIntegerConversion(String ip, BigInteger bigIntegerIp) {
        InetAddress address = InetAddresses.forString(ip);
        boolean isIpv6 = address instanceof Inet6Address;
        assertThat(InetAddresses.toBigInteger(address)).isEqualTo(bigIntegerIp);
        assertThat(
                isIpv6
                    ? InetAddresses.fromIPv6BigInteger(bigIntegerIp)
                    : InetAddresses.fromIPv4BigInteger(bigIntegerIp))
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 36.3K bytes
    - Click Count (0)
Back to Top