- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getAccessResultList (0.09 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) -
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/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)