Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 175 for timeStamp (0.04 sec)

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

                }
                return null;
            }).orElse(value);
        }
    
        /**
         * Converts a Long timestamp to a Date object.
         *
         * @param value the timestamp in milliseconds
         * @return Date object representing the timestamp, or null if value is null
         */
        public static Date date(final Long value) {
            if (value == null) {
                return null;
            }
    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/dict/mapping/CharMappingFile.java

         * @param id the unique identifier for this mapping file
         * @param path the file path to the character mapping dictionary
         * @param timestamp the last modification timestamp of the file
         */
        public CharMappingFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        /**
         * Returns the type identifier for this dictionary file.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/beans/converter/NumberConverterTest.java

     */
    package org.codelibs.core.beans.converter;
    
    import static org.hamcrest.CoreMatchers.is;
    import static org.hamcrest.CoreMatchers.not;
    import static org.junit.Assert.assertThat;
    
    import java.sql.Timestamp;
    
    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class NumberConverterTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetAsObject() throws Exception {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

         * @param id        The unique identifier for this dictionary file.
         * @param path      The path to the dictionary file.
         * @param timestamp The last modified timestamp of the file.
         */
        public StemmerOverrideFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return STEMMER_OVERRIDE;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/misc/DynamicProperties.java

         */
        protected long checkInterval = 5000L;
    
        /**
         * The timestamp of the last check for file modifications.
         */
        protected volatile long lastChecked = 0L;
    
        /**
         * The timestamp of the last modification of the properties file.
         */
        protected volatile long lastModified = 0L;
    
        /**
         * The properties file.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java

        public String id;
        /** The type of the dictionary. */
        public String type;
        /** The path of the dictionary. */
        public String path;
        /** The timestamp of the dictionary. */
        public Date timestamp;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

        /**
         * The username of the user who created this access token.
         * Maximum length is 1000 characters.
         */
        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when this access token was created.
         * Stored as a long value representing milliseconds since epoch.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            // Default constructor
        }
    
        /** Logger instance for this class. */
        private static final Logger logger = LogManager.getLogger(CrawlerStatsHelper.class);
    
        /** Key used to store the begin timestamp in statistics objects. */
        private static final String BEGIN_KEY = "begin";
    
        /** Logger instance specifically for outputting crawler statistics. */
        protected Logger statsLogger = null;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

         *
         * @param id The ID of the dictionary file.
         * @param path The path of the dictionary file.
         * @param timestamp The timestamp of the dictionary file.
         */
        public KuromojiFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return KUROMOJI;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        /**
         * Purges old suggest data from documents.
         *
         * @param time The timestamp to purge data before.
         */
        public void purgeDocumentSuggest(final LocalDateTime time) {
            final BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery();
            boolQueryBuilder
                    .must(QueryBuilders.rangeQuery(FieldNames.TIMESTAMP).lt(time.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli()));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
Back to top