- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 33 for scroll1 (0.09 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
response = client.prepareSearchScroll(scrollId).setScroll(scrollForDelete).execute().actionGet(scrollSearchTimeout); if (!scrollId.equals(response.getScrollId())) { deleteScrollContext(scrollId); } scrollId = response.getScrollId(); } } finally { deleteScrollContext(scrollId); } }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 26.4K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug_report.md
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem.
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Feb 10 22:19:06 UTC 2020 - 749 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java
response = client.prepareSearchScroll(scrollId) .setScroll(settings.getScrollTimeout()) .execute() .actionGet(settings.getSearchTimeout()); if (!scrollId.equals(response.getScrollId())) { SuggestUtil.deleteScrollContext(client, scrollId); }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 15.8K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug_report.md
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem.
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Feb 10 22:18:26 UTC 2020 - 748 bytes - Viewed (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. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
} final String sid = scrollId; response = getClient().get(c -> c.prepareSearchScroll(sid).setScroll(new TimeValue(scrollTimeout)).execute()); if (!scrollId.equals(response.getScrollId())) { getClient().clearScroll(scrollId); } scrollId = response.getScrollId(); } } finally {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 16.9K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
response = client.prepareSearchScroll(scrollId) .setScroll(settings.getScrollTimeout()) .execute() .actionGet(settings.getSearchTimeout()); if (!scrollId.equals(response.getScrollId())) { SuggestUtil.deleteScrollContext(client, scrollId); } scrollId = response.getScrollId(); }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilder.java
*/ public SuggestSettingsBuilder addInitialSettings(final String key, final Object value) { initialSettings.put(key, value); return this; } /** * Sets the scroll timeout. * @param timeout The scroll timeout. * @return This builder instance. */ public SuggestSettingsBuilder scrollTimeout(final String timeout) { timeoutSettings.setScrollTimeout(timeout); return this;Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:10:16 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
* * This class provides comprehensive search functionality including document search, * scroll search, and bulk operations. It handles search request parameter processing, * query building, response formatting, and search log management. * * Key features: * - Document search with pagination and faceting * - Scroll search for large result sets * - Document retrieval by ID * - Bulk document updates
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug_report.md
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Aug 17 22:53:30 UTC 2020 - 782 bytes - Viewed (0)