Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ofInstant (0.07 sec)

  1. 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;
        }
    
        public Map<String, Object> getUpdatedSource(final Map<String, Object> existingSource) {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return System.currentTimeMillis();
        }
    
        public LocalDateTime getCurrentTimeAsLocalDateTime() {
            final Instant instant = Instant.ofEpochMilli(getCurrentTimeAsLong());
            return LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
        }
    
        public String getLogFilePath() {
            final String value = System.getProperty("fess.log.path");
            if (value != null) {
                return value;
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top