Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for date_optional_time (0.25 sec)

  1. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         * @param value the date string to parse
         * @return parsed Date object, or null if parsing fails
         */
        public static Date parseDate(final String value) {
            return parseDate(value, Constants.DATE_OPTIONAL_TIME);
        }
    
        /**
         * Parses a date string using the specified format.
         *
         * @param value the date string to parse
         * @param format the date format pattern or "pdf_date" for PDF date format
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/Constants.java

        public static final String ISO_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
    
        /** Date optional time format identifier. */
        public static final String DATE_OPTIONAL_TIME = "date_optional_time";
    
        // ============================================================
        // Default Values and Status
        // ============================================================
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                                        dateFormat = Constants.MAPPING_TYPE_PDF_DATE;
                                    } else {
                                        dateFormat = Constants.DATE_OPTIONAL_TIME;
                                    }
                                    final Date dt = FessFunctions.parseDate(values[0], dateFormat);
                                    if (dt != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top