Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 86400 (0.02 sec)

  1. guava-gwt/pom.xml

                  <sourceLevel>1.8</sourceLevel>
                  <!-- Keep these timeouts very large because, if we hit the timeout, the tests silently pass :( -->
                  <testTimeOut>86400 <!-- seconds --></testTimeOut>
                  <testMethodTimeout>1440 <!-- minutes --></testMethodTimeout>
                  <!-- Presumably we want watchFileChanges=false here, since we want it for compile: -->
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/HashTestUtils.java

        assertEquals(ByteOrder.BIG_ENDIAN, bigEndian.order());
      }
    
      static void assertHashBytesThrowsCorrectExceptions(HashFunction hashFunction) {
        {
          HashCode unused = hashFunction.hashBytes(new byte[64], 0, 0);
        }
    
        try {
          hashFunction.hashBytes(new byte[128], -1, 128);
          Assert.fail();
        } catch (IndexOutOfBoundsException expected) {
        }
        try {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top