Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for 98 (0.02 seconds)

  1. guava-tests/test/com/google/common/io/ByteStreamsTest.java

      }
    
      public void testToByteArray_withSize_givenSizeTwoSmallerThanActual() throws IOException {
        InputStream in = new ByteArrayInputStream(PRE_FILLED_100);
        byte[] b = ByteStreams.toByteArray(in, 98);
        assertThat(b).isEqualTo(PRE_FILLED_100);
      }
    
      public void testExhaust() throws IOException {
        InputStream in = newTestStream(100);
        assertEquals(100, ByteStreams.exhaust(in));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 22K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

      }
    
      public void testToByteArray_withSize_givenSizeTwoSmallerThanActual() throws IOException {
        InputStream in = new ByteArrayInputStream(PRE_FILLED_100);
        byte[] b = ByteStreams.toByteArray(in, 98);
        assertThat(b).isEqualTo(PRE_FILLED_100);
      }
    
      public void testExhaust() throws IOException {
        InputStream in = newTestStream(100);
        assertEquals(100, ByteStreams.exhaust(in));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 22K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

    cpovirk <******@****.***> 1773857050 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 15K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

    cpovirk <******@****.***> 1773857050 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 15K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper.waitForNoWaitingThreads();
        }
    
        @Test
        public void test_getVersion() {
            assertEquals("98.76.5", systemHelper.getVersion());
            assertEquals(98, systemHelper.getMajorVersion());
            assertEquals(76, systemHelper.getMinorVersion());
            assertEquals("98.76", systemHelper.getProductVersion());
        }
    
        @Test
        public void test_getEnvMap() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 44.4K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java

              k2 ^= (long) toUnsignedInt(bb.get(11)) << 24; // fall through
            case 11:
              k2 ^= (long) toUnsignedInt(bb.get(10)) << 16; // fall through
            case 10:
              k2 ^= (long) toUnsignedInt(bb.get(9)) << 8; // fall through
            case 9:
              k2 ^= (long) toUnsignedInt(bb.get(8)); // fall through
            case 8:
              k1 ^= bb.getLong();
              break;
            case 7:
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  7. src/bytes/bytes_test.go

    apocelipes <******@****.***> 1773077562 +0000
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Mar 11 03:07:05 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  8. src/archive/zip/reader_test.go

    Damien Neil <******@****.***> 1762304433 -0800
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 15 18:35:56 GMT 2026
    - 57.9K bytes
    - Click Count (0)
  9. doc/go_spec.html

    </p>
    
    <pre>
    const Huge = 1 &lt;&lt; 100         // Huge == 1267650600228229401496703205376  (untyped integer constant)
    const Four int8 = Huge &gt;&gt; 98  // Four == 4                                (type int8)
    </pre>
    
    <p>
    The divisor of a constant division or remainder operation must not be zero:
    </p>
    
    <pre>
    3.14 / 0.0   // illegal: division by zero
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Apr 01 23:39:18 GMT 2026
    - 287.8K bytes
    - Click Count (1)
Back to Top