- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getTimestamp (0.16 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
*/ public void store(final DictionaryFile<? extends DictionaryItem> dictFile, final File file) { getDictionaryFile(dictFile.getId()).ifPresent(currentFile -> { if (currentFile.getTimestamp().getTime() > dictFile.getTimestamp().getTime()) { throw new DictionaryException(dictFile.getPath() + " was updated."); } // TODO use stream
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
return path; } /** * Returns the timestamp of this dictionary file. * * @return the timestamp when this dictionary was created or last modified */ public Date getTimestamp() { return timestamp; } /** * Sets the dictionary manager for this file and returns this instance. * * @param dictionaryManager the dictionary manager to set
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0)