Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 1E (0.01 sec)

  1. android/guava-tests/test/com/google/common/hash/BloomFilterTest.java

            bitArray.bitSize() > 0);
    
        // Ideally we would also test the bitSize() overflow of this BF, but it runs out of heap space
        // BloomFilter.create(Funnels.unencodedCharsFunnel(), 244412641, 1e-11);
      }
    
      /**
       * Asserts that {@link BloomFilter#approximateElementCount} is within 1 percent of the expected
       * value.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        assertThat(converter.convert("0")).isEqualTo(0.0);
        assertThat(converter.convert("-1")).isEqualTo(-1.0);
        assertThat(converter.convert("1e6")).isEqualTo(1e6);
        assertThat(converter.convert("1e-6")).isEqualTo(1e-6);
      }
    
      public void testStringConverter_convertError() {
        assertThrows(
            NumberFormatException.class, () -> Doubles.stringConverter().convert("notanumber"));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/BloomFilterTest.java

            bitArray.bitSize() > 0);
    
        // Ideally we would also test the bitSize() overflow of this BF, but it runs out of heap space
        // BloomFilter.create(Funnels.unencodedCharsFunnel(), 244412641, 1e-11);
      }
    
      /**
       * Asserts that {@link BloomFilter#approximateElementCount} is within 1 percent of the expected
       * value.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/DoublesTest.java

        assertThat(converter.convert("0")).isEqualTo(0.0);
        assertThat(converter.convert("-1")).isEqualTo(-1.0);
        assertThat(converter.convert("1e6")).isEqualTo(1e6);
        assertThat(converter.convert("1e-6")).isEqualTo(1e-6);
      }
    
      public void testStringConverter_convertError() {
        assertThrows(
            NumberFormatException.class, () -> Doubles.stringConverter().convert("notanumber"));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/NetbiosAddress.java

     * BILLING-NY      <00>  GROUP       Registered
     * JMORRIS2        <03>  UNIQUE      Registered
     * JMORRIS2        <20>  UNIQUE      Registered
     * BILLING-NY      <1E>  GROUP       Registered
     * JMORRIS         <03>  UNIQUE      Registered
     *
     * MAC Address = 00-B0-34-21-FA-3B
     * </pre>
     *
     * </blockquote>
     *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThat(converter.convert("0")).isEqualTo(0.0f);
        assertThat(converter.convert("-1")).isEqualTo(-1.0f);
        assertThat(converter.convert("1e6")).isEqualTo(1e6f);
        assertThat(converter.convert("1e-6")).isEqualTo(1e-6f);
      }
    
      public void testStringConverter_convertError() {
        assertThrows(NumberFormatException.class, () -> Floats.stringConverter().convert("notanumber"));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThat(converter.convert("0")).isEqualTo(0.0f);
        assertThat(converter.convert("-1")).isEqualTo(-1.0f);
        assertThat(converter.convert("1e6")).isEqualTo(1e6f);
        assertThat(converter.convert("1e-6")).isEqualTo(1e-6f);
      }
    
      public void testStringConverter_convertError() {
        assertThrows(NumberFormatException.class, () -> Floats.stringConverter().convert("notanumber"));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NbtAddress.java

     * BILLING-NY      &lt;00&gt;  GROUP       Registered
     * JMORRIS2        &lt;03&gt;  UNIQUE      Registered
     * JMORRIS2        &lt;20&gt;  UNIQUE      Registered
     * BILLING-NY      &lt;1E&gt;  GROUP       Registered
     * JMORRIS         &lt;03&gt;  UNIQUE      Registered
     *
     * MAC Address = 00-B0-34-21-FA-3B
     * </pre>
     *
     * </blockquote>
     *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/util/HexdumpTest.java

            assertTrue(output.contains(" 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F"));
            // Verify second line contains bytes 16-31
            assertTrue(output.contains(" 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F"));
        }
    
        @Test
        @DisplayName("Should handle control characters in hexdump")
        void testHexdumpControlCharacters() {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

    import org.mockito.Mockito;
    
    /**
     * Tests for RateLimiter.
     *
     * @author Dimitris Andreou
     */
    @NullUnmarked
    public class RateLimiterTest extends TestCase {
      private static final double EPSILON = 1e-8;
    
      private final FakeStopwatch stopwatch = new FakeStopwatch();
    
      public void testSimple() {
        RateLimiter limiter = RateLimiter.create(5.0, stopwatch);
        limiter.acquire(); // R0.00, since it's the first request
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
Back to top