- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for timestamp (0.06 sec)
-
DictionaryFile.java
protected DictionaryManager dictionaryManager; L34: L35: protected String id; L36: L37: protected String path; L38: L39: protected Date timestamp; L40: L41: protected DictionaryFile(final String id, final String path, final Date timestamp) { L42: this.id = id; L43: this.path = path; L44: this.timestamp = timestamp; L45: } L46: L47: public String getId() { L48: return id; L49: } L50: L51: public String getPath() { L52: return path; L53:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 6.8K bytes -
ProtwordsFile.java
DictionaryFile<ProtwordsItem> { L43: private static final String PROTWORDS = "protwords"; L44: L45: List<ProtwordsItem> protwordsItemList; L46: L47: public ProtwordsFile(final String id, final String path, final Date timestamp) { L48: super(id, path, timestamp); L49: } L50: L51: @Override L52: public String getType() { L53: return PROTWORDS; L54: } L55: L56: @Override L57: public String getPath() { L58: return path; L59: } L60: L61: @Override L62:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
StopwordsFile.java
DictionaryFile<StopwordsItem> { L43: private static final String STOPWORDS = "stopwords"; L44: L45: List<StopwordsItem> stopwordsItemList; L46: L47: public StopwordsFile(final String id, final String path, final Date timestamp) { L48: super(id, path, timestamp); L49: } L50: L51: @Override L52: public String getType() { L53: return STOPWORDS; L54: } L55: L56: @Override L57: public String getPath() { L58: return path; L59: } L60: L61: @Override L62:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
StemmerOverrideFile.java
L49: private static final String STEMMER_OVERRIDE = "stemmeroverride"; L50: L51: List<StemmerOverrideItem> stemmerOverrideItemList; L52: L53: public StemmerOverrideFile(final String id, final String path, final Date timestamp) { L54: super(id, path, timestamp); L55: } L56: L57: @Override L58: public String getType() { L59: return STEMMER_OVERRIDE; L60: } L61: L62: @Override L63: public String getPath() { L64: return path; L65: } L66: L67: @Override...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.6K bytes -
advance.jsp
TO *]" L263: <c:if test="${as.timestamp.contains('[now-1w/d TO *]')}">selected</c:if> L264: ><la:message key="labels.advance_search_timestamp_pastweek" /></option> L265: <option value="[now-1M/d TO *]" L266: <c:if test="${as.timestamp.contains('[now-1M/d TO *]')}">selected</c:if> L267: ><la:message key="labels.advance_search_timestamp_pastmonth" /></option> L268: <option value="[now-1y/d TO *]" L269: <c:if test="${as.timestamp.contains('[now-1y/d TO *]')}">selected</c:if>...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
PluginHelper.java
= snapshotNodeList.item(0).getChildNodes(); L200: for (int i = 0; i < nodeList.getLength(); i++) { L201: final Node node = nodeList.item(i); L202: if ("timestamp".equalsIgnoreCase(node.getNodeName())) { L203: timestamp = node.getTextContent(); L204: } else if ("buildNumber".equalsIgnoreCase(node.getNodeName())) { L205: buildNumber = node.getTextContent(); L206: ...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 01:47:10 UTC 2024 17.8K bytes -
CharMappingFile.java
LogManager.getLogger(CharMappingFile.class); L48: L49: private static final String MAPPING = "mapping"; L50: L51: List<CharMappingItem> mappingItemList; L52: L53: public CharMappingFile(final String id, final String path, final Date timestamp) { L54: super(id, path, timestamp); L55: } L56: L57: @Override L58: public String getType() { L59: return MAPPING; L60: } L61: L62: @Override L63: public String getPath() { L64: return path; L65: } L66: L67: @Override L68:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.2K bytes -
advance.jsp
TO *]" L263: <c:if test="${as.timestamp.contains('[now-1w/d TO *]')}">selected</c:if> L264: ><la:message key="labels.advance_search_timestamp_pastweek" /></option> L265: <option value="[now-1M/d TO *]" L266: <c:if test="${as.timestamp.contains('[now-1M/d TO *]')}">selected</c:if> L267: ><la:message key="labels.advance_search_timestamp_pastmonth" /></option> L268: <option value="[now-1y/d TO *]" L269: <c:if test="${as.timestamp.contains('[now-1y/d TO *]')}">selected</c:if>...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
SuggestHelper.java
L249: public void purgeDocumentSuggest(final LocalDateTime time) { L250: final BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery(); L251: boolQueryBuilder L252: .must(QueryBuilders.rangeQuery(FieldNames.TIMESTAMP).lt(time.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli())); L253: L254: boolQueryBuilder.must(QueryBuilders.termQuery(FieldNames.KINDS, SuggestItem.Kind.DOCUMENT.toString())); L255: boolQueryBuilder.mustNot(QueryBuilders....github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.1K bytes -
MonitorTarget.java
buf.append(tempBuf.toString()); L53: return buf; L54: } L55: L56: protected StringBuilder appendTimestamp(final StringBuilder buf) { L57: final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); L58: append(buf, "timestamp", () -> FessFunctions.formatDate(systemHelper.getCurrentTime())); L59: return buf; L60: } L61: L62: protected StringBuilder appendException(final StringBuilder buf, final Exception exception) { L63: try (ByteArrayOutputStream...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 3K bytes