- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getAccessResultList (0.3 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
* @param hasData whether the result should have data * @return the list of access results */ @Override public List<AccessResultImpl<Long>> getAccessResultList(final String url, final boolean hasData) { return dataHelper.getAccessResultList(url); } /** * Iterates over all access results for the specified session. * * @param sessionId the session ID
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
} updateTime = systemHelper.getCurrentTimeAsLong(); List<OpenSearchAccessResult> arList = getAccessResultList(cb, cleanupTime); if (arList.isEmpty()) { emptyListCount++; } else { emptyListCount = 0; // reset }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
* * @param url the URL * @param hasData whether the access results should have data * @return the list of access results */ List<RESULT> getAccessResultList(String url, boolean hasData); /** * Iterates over access results for the given session ID and applies the callback. * * @param sessionId the session ID
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
* @param hasData Whether to include data (currently not used in this implementation). * @return The list of access results. */ @Override public List<OpenSearchAccessResult> getAccessResultList(final String url, final boolean hasData) { return getList(OpenSearchAccessResult.class, builder -> builder.setQuery(QueryBuilders.termQuery(URL, url))); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java
* @param url the URL to search for * @return the list of access results for the URL */ public synchronized List<AccessResultImpl<Long>> getAccessResultList(final String url) { final List<AccessResultImpl<Long>> acList = new ArrayList<>(); for (final Map.Entry<String, Map<String, AccessResultImpl<Long>>> entry : sessionMap.entrySet()) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
private boolean throwContainerNotAvailable = false; private boolean throwRuntimeException = false; @Override public List<OpenSearchAccessResult> getAccessResultList(Consumer<SearchRequestBuilder> cb) { if (throwContainerNotAvailable) { throw new ContainerNotAvailableException(""); } if (throwRuntimeException) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0)