- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ofEpochMilli (0.11 sec)
-
src/main/java/org/codelibs/fess/helper/SystemHelper.java
/** * Gets the current time as a LocalDateTime object. * * @return The current time. */ public LocalDateTime getCurrentTimeAsLocalDateTime() { final Instant instant = Instant.ofEpochMilli(getCurrentTimeAsLong()); return LocalDateTime.ofInstant(instant, ZoneId.systemDefault()); } /** * Gets the path to the log file. * * @return The log file path. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
item.kinds[i] = Kind.USER; } } item.id = SuggestUtil.createSuggestTextId(item.text); item.timestamp = ZonedDateTime.ofInstant(Instant.ofEpochMilli(timestamp), Clock.systemDefaultZone().getZone()); return item; } /** * Returns the updated source map by merging with existing source. * @param existingSource The existing source map.
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 25.1K bytes - Viewed (0)