- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 49 for Scroll (0.04 seconds)
-
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/client/FesenClientTest.java
when(mockSearchResponse.getScrollId()).thenReturn("scroll1", "scroll1"); when(mockSearchResponse.getHits()).thenReturn(mockSearchHits); when(mockSearchHits.getHits()).thenReturn(new SearchHit[] { mockHit }, new SearchHit[0]); when(mockHit.getIndex()).thenReturn("test-index"); when(mockHit.getId()).thenReturn("doc1"); // Setup scroll response (empty on second call)
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:44:44 GMT 2025 - 17K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
/** * Flag indicating whether the client is connected. */ private volatile boolean connected; /** * Scroll for delete operations. */ protected Scroll scrollForDelete = new Scroll(TimeValue.timeValueMinutes(1)); /** * Size for delete operations. */ protected int sizeForDelete = 10; /**Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 02:01:26 GMT 2025 - 26.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
return queue.poll(); } @Override public void close() { isFinished.set(true); queue.clear(); } /** * Sets the scroll size. * @param scrollSize The scroll size. */ public void setScrollSize(final int scrollSize) { this.scrollSize = scrollSize; } /** * Sets the limit of document size.Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} /** * Prepares a clear scroll request builder. * * @return the clear scroll request builder */ @Override public ClearScrollRequestBuilder prepareClearScroll() { return client.prepareClearScroll(); } /** * Clears scroll contexts asynchronously. * * @param request the clear scroll requestCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 122.4K bytes - Click Count (1) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
this.index = index; } /** * Gets the scroll timeout in milliseconds. * * @return The scroll timeout. */ public int getScrollTimeout() { return scrollTimeout; } /** * Sets the scroll timeout. * @param scrollTimeout The scroll timeout. */ public void setScrollTimeout(final int scrollTimeout) {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 34.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
POPULARWORD, /** Favorite API format. */ FAVORITE, /** Favorites API format. */ FAVORITES, /** Ping API format. */ PING, /** Scroll API format. */ SCROLL, /** Suggest API format. */ SUGGEST, /** Other API format. */ OTHER; } /** * Default constructor for BaseApiManager. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
} return true; } /** * Deletes the scroll context associated with the given scroll ID. * * @param client the OpenSearch client used to clear the scroll context * @param scrollId the ID of the scroll context to be deleted; if null, no action is taken */Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Sun Nov 23 11:21:40 GMT 2025 - 17.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
} /** * Scrolls through all documents in the specified index and applies the callback function to each hit. * * @param index the name of the index to scroll through * @param callback the function to apply to each search hit, returning true to continue or false to stop * @return the number of documents processed */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
} /** * Gets the fields that are included in scroll search responses. * * @return array of field names for scroll search responses */ public String[] getScrollResponseFields() { return scrollResponseFields; } /** * Sets the fields that are included in scroll search responses. *Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
*/ public void setClusterTimeout(final String timeout) { this.clusterTimeout = timeout; } /** * Sets the scroll timeout. * @param timeout The scroll timeout. */ public void setScrollTimeout(final String timeout) { this.scrollTimeout = timeout; } } /**Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 20.1K bytes - Click Count (0)