Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 000123 (0.19 sec)

  1. src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java

         */
        //    @Test
        //    public void testToDate_JdbcEscapeFormat() throws Exception {
        //        final Date date = toDate("2010-09-07 11:49:10.123", Locale.JAPAN);
        //        assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSS").format(date), is("2010/09/07 11:49:10.123"));
        //    }
    
        /**
         * @throws Exception
         */
        //    @Test
        //    public void testToDate_SpecificLocale() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/convert/BigDecimalConversionUtilTest.java

            assertEquals(0, new BigDecimal("0.00123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.00123D))));
            assertEquals(0, new BigDecimal("0.000123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.000123D))));
            assertEquals(0, new BigDecimal("0.0000123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.0000123D))));
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/convert/NumberConversionUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        public void testRemoveDelimeter() throws Exception {
            assertEquals("1000000.234", NumberConversionUtil.removeDelimeter("1,000,000.234", Locale.JAPAN));
        }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/Hexdump.java

     *
     * <p><blockquote><pre>
     * 00000: 04 d2 29 00 00 01 00 00 00 00 00 01 20 45 47 46  |..)......... EGF|
     * 00010: 43 45 46 45 45 43 41 43 41 43 41 43 41 43 41 43  |CEFEECACACACACAC|
     * 00020: 41 43 41 43 41 43 41 43 41 43 41 41 44 00 00 20  |ACACACACACAAD.. |
     * 00030: 00 01 c0 0c 00 20 00 01 00 00 00 00 00 06 20 00  |..... ........ .|
     * 00040: ac 22 22 e1                                      |."".            |
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        protected static final short SMB2_CHANGE_NOTIFY = 0x000F;
        protected static final short SMB2_QUERY_INFO = 0x0010;
        protected static final short SMB2_SET_INFO = 0x0011;
        protected static final short SMB2_OPLOCK_BREAK = 0x0012;
    
        /**
         * 
         */
        public static final int SMB2_FLAGS_SERVER_TO_REDIR = 0x00000001;
        /**
         * 
         */
        public static final int SMB2_FLAGS_ASYNC_COMMAND = 0x00000002;
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
Back to top