Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 7666 (0.2 sec)

  1. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertEquals(0, c.compare(5, 5));
        assertTrue(c.compare(5, 42) > 0);
        assertTrue(c.compare(42, 5) < 0);
        try {
          c.compare(5, 666);
          fail();
        } catch (IncomparableValueException expected) {
          assertEquals(666, expected.value);
        }
        new EqualsTester()
            .addEqualityGroup(c, Ordering.explicit(42, 5))
            .addEqualityGroup(Ordering.explicit(5, 42))
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/OrderingTest.java

        assertEquals(0, c.compare(5, 5));
        assertTrue(c.compare(5, 42) > 0);
        assertTrue(c.compare(42, 5) < 0);
        try {
          c.compare(5, 666);
          fail();
        } catch (IncomparableValueException expected) {
          assertEquals(666, expected.value);
        }
        new EqualsTester()
            .addEqualityGroup(c, Ordering.explicit(42, 5))
            .addEqualityGroup(Ordering.explicit(5, 42))
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

                20932, 28504, 45944, 52395, 24950, 39015, 47001, 31918, 2534, 53584, 22561, 2407, 23004,
                20976, 32602, 26894, 29246, 38152, 25958, 49689, 26447, 37666, 3768, 2408, 33889, 27133,
                47676, 45328, 32874, 33167, 31661, 53444, 1777, 31048, 50883, 36493, 38512, 28900,
                33633, 1632, 24505, 21861, 23725, 23229, 27738, 22403, 30165, 47111, 12643, 40718,
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/ShortsTest.java

        assertThat(converter.convert("-0xFF")).isEqualTo((Short) (short) (-255));
        assertThat(converter.convert("#0000FF")).isEqualTo((Short) (short) 255);
        assertThat(converter.convert("0666")).isEqualTo((Short) (short) 438);
      }
    
      public void testStringConverter_convertError() {
        try {
          Shorts.stringConverter().convert("notanumber");
          fail();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/LongsTest.java

        assertThat(converter.convert("-0xFF")).isEqualTo((Long) (-255L));
        assertThat(converter.convert("#0000FF")).isEqualTo((Long) 255L);
        assertThat(converter.convert("0666")).isEqualTo((Long) 438L);
      }
    
      public void testStringConverter_convertError() {
        try {
          Longs.stringConverter().convert("notanumber");
          fail();
        } catch (NumberFormatException expected) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 30K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/LongsTest.java

        assertThat(converter.convert("-0xFF")).isEqualTo((Long) (-255L));
        assertThat(converter.convert("#0000FF")).isEqualTo((Long) 255L);
        assertThat(converter.convert("0666")).isEqualTo((Long) 438L);
      }
    
      public void testStringConverter_convertError() {
        try {
          Longs.stringConverter().convert("notanumber");
          fail();
        } catch (NumberFormatException expected) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 30K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/IntsTest.java

        assertThat(converter.convert("-0xFF")).isEqualTo((Integer) (-255));
        assertThat(converter.convert("#0000FF")).isEqualTo((Integer) 255);
        assertThat(converter.convert("0666")).isEqualTo((Integer) 438);
      }
    
      public void testStringConverter_convertError() {
        try {
          Ints.stringConverter().convert("notanumber");
          fail();
        } catch (NumberFormatException expected) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            final String[] args = new String[] { //
                    "-X111", //
                    "8:-X222", //
                    "10:-X333", //
                    "11:-X444", //
                    "8-:-X555", //
                    "10-:-X666", //
                    "11-:-X777", //
                    "12-:-X888", //
                    "-X999",//
            };
    
            System.setProperty("java.version", "1.8.0_171");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java

            Locale.setDefault(Locale.JAPANESE);
            final SQLException sqlException = new SQLException("some reason", "fooState", 7650);
            final SQLException sqlException2 = new SQLException("hoge reason", "barState", 7660);
            final SQLException sqlException3 = new SQLException("fuga reason", "bazState", 7670);
            sqlException.setNextException(sqlException2);
            sqlException2.setNextException(sqlException3);
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

                20932, 28504, 45944, 52395, 24950, 39015, 47001, 31918, 2534, 53584, 22561, 2407, 23004,
                20976, 32602, 26894, 29246, 38152, 25958, 49689, 26447, 37666, 3768, 2408, 33889, 27133,
                47676, 45328, 32874, 33167, 31661, 53444, 1777, 31048, 50883, 36493, 38512, 28900,
                33633, 1632, 24505, 21861, 23725, 23229, 27738, 22403, 30165, 47111, 12643, 40718,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
Back to top