Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testTryParseInfinity (0.12 sec)

  1. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

      public void testTryParseNaN() {
        checkTryParse("NaN");
        checkTryParse("+NaN");
        checkTryParse("-NaN");
      }
    
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseInfinity() {
        checkTryParse(Double.POSITIVE_INFINITY, "Infinity");
        checkTryParse(Double.POSITIVE_INFINITY, "+Infinity");
        checkTryParse(Double.NEGATIVE_INFINITY, "-Infinity");
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

      public void testTryParseNaN() {
        checkTryParse("NaN");
        checkTryParse("+NaN");
        checkTryParse("-NaN");
      }
    
      @GwtIncompatible // Floats.tryParse
      public void testTryParseInfinity() {
        checkTryParse(Float.POSITIVE_INFINITY, "Infinity");
        checkTryParse(Float.POSITIVE_INFINITY, "+Infinity");
        checkTryParse(Float.NEGATIVE_INFINITY, "-Infinity");
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/DoublesTest.java

      public void testTryParseNaN() {
        checkTryParse("NaN");
        checkTryParse("+NaN");
        checkTryParse("-NaN");
      }
    
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseInfinity() {
        checkTryParse(Double.POSITIVE_INFINITY, "Infinity");
        checkTryParse(Double.POSITIVE_INFINITY, "+Infinity");
        checkTryParse(Double.NEGATIVE_INFINITY, "-Infinity");
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/FloatsTest.java

      public void testTryParseNaN() {
        checkTryParse("NaN");
        checkTryParse("+NaN");
        checkTryParse("-NaN");
      }
    
      @GwtIncompatible // Floats.tryParse
      public void testTryParseInfinity() {
        checkTryParse(Float.POSITIVE_INFINITY, "Infinity");
        checkTryParse(Float.POSITIVE_INFINITY, "+Infinity");
        checkTryParse(Float.NEGATIVE_INFINITY, "-Infinity");
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top