Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for timeStamp (0.05 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

        protected String path;
    
        /** The timestamp when this dictionary file was created or last modified. */
        protected Date timestamp;
    
        /**
         * Creates a new DictionaryFile with the specified parameters.
         *
         * @param id the unique identifier for this dictionary file
         * @param path the file path of this dictionary
         * @param timestamp the timestamp of the dictionary file
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

            monitorTarget.appendTimestamp(buf);
            String result = buf.toString();
            assertTrue(result.startsWith("\"timestamp\":\""));
            assertTrue(result.endsWith("\""));
            // Verify a timestamp was properly formatted
            assertNotNull(result);
            assertTrue(result.length() > "\"timestamp\":\"\"".length());
        }
    
        // Test appendException method with simple exception
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Set.of(), //
                    buildQuery("timestamp:[* TO 100]"));
            assertQueryContext(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         * @return the actual version string with timestamp and build number, or null if not found
         * @throws SAXException if XML parsing fails
         * @throws IOException if I/O error occurs
         */
        protected String getSnapshotActualVersion(final DocumentBuilder builder, final String pluginUrl, final String version)
                throws SAXException, IOException {
            String timestamp = null;
            String buildNumber = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            assertEquals(currentTime, searchRenderData.getRequestedTime());
    
            // Test with specific timestamp
            long timestamp = 1609459200000L; // 2021-01-01 00:00:00 UTC
            searchRenderData.setRequestedTime(timestamp);
            assertEquals(timestamp, searchRenderData.getRequestedTime());
    
            // Test with negative value
            searchRenderData.setRequestedTime(-1000L);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

                        final Date timestamp =
                                new SimpleDateFormat(Constants.DATE_FORMAT_ISO_8601_EXTEND_UTC).parse(fileMap.get("@timestamp").toString());
                        for (final DictionaryCreator creator : creatorList) {
                            final DictionaryFile<? extends DictionaryItem> file = creator.create(path, timestamp);
                            if (file != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "site:aaa");
    
            assertQueryBuilder("{\"timestamp\":{\"order\":\"asc\"}}", "sort:timestamp");
            assertQueryBuilder("{\"timestamp\":{\"order\":\"asc\"}}", "sort:timestamp.asc");
            assertQueryBuilder("{\"timestamp\":{\"order\":\"desc\"}}", "sort:timestamp.desc");
    
            try {
                assertQueryBuilder("", "sort:xxx");
                fail();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.4K bytes
    - Viewed (0)
Back to top