Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for absolute (0.14 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * comment: <br>
         * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br>
         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
         * The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/sql/ResultSetUtil.java

         * @throws SQLRuntimeException
         *             SQL例外が起こった場合。
         */
        public static boolean absolute(final ResultSet resultSet, final int index) throws SQLRuntimeException {
            assertArgumentNotNull("resultSet", resultSet);
    
            try {
                return resultSet.absolute(index);
            } catch (final SQLException ex) {
                throw new SQLRuntimeException(ex);
            }
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.9K bytes
    - Viewed (0)
Back to top