- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 12 for Previous (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
saveToken(); return doSearch(form); } /** * Navigates to the previous page of search results. * * @param form the list form containing current search criteria * @return HTML response with previous page results */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse prev(final ListForm form) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 25.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
* @return the total page count */ public int getAllPageCount() { return allPageCount; } /** * Checks if a previous page exists. * * @return true if there is a previous page, false otherwise */ public boolean isExistPrePage() { return currentPageNumber != 1; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.2K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/searchResults.jsp
</div> <div class="row"> <nav id="subfooter" class="mx-auto"> <ul class="pagination justify-content-center"> <c:if test="${existPrevPage}"> <li class="page-item"><la:link styleClass="page-link" aria-label="Previous" href="/search/prev?q=${f:u(q)}&pn=${f:u(currentPageNumber)}&num=${f:u(pageSize)}&sdh=${f:u(fe:sdh(sdh))}${fe:pagingQuery(null)}${fe:facetQuery()}${fe:geoQuery()}"> <span aria-hidden="true">«</span>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 12.2K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/llm/LlmClient.java
* @return the chat response */ LlmChatResponse generateAnswer(String userMessage, List<Map<String, Object>> documents, List<LlmMessage> history); /** * Regenerates a search query when the previous query failed to produce relevant results. * * @param userMessage the user's original message * @param failedQuery the query that failedCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java
} @Test public void test_unescapedPlusDoesNotMatch() { // Demonstrate the bug when + is not escaped // In regex, + means "one or more" of the previous character String wrongPattern = "(application/xhtml+xml|application/rdf+xml)"; Pattern pattern = Pattern.compile(wrongPattern); // Without escaping, "application/xhtml+xml" does NOT matchCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 8.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:01:34 GMT 2026 - 13.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
history.add(LlmMessage.user("Previous question")); final LlmChatRequest request = client.testBuildIntentRequest("Follow-up", history); final List<LlmMessage> messages = request.getMessages(); // system + 1 history + user = 3 messages assertEquals(3, messages.size()); assertEquals("Previous question", messages.get(1).getContent());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
deleteOldDocs(); } } } /** * Deletes old documents from the search index. * This method removes documents that were indexed in previous * crawling sessions for the same data configuration, keeping * only the documents from the current session. * * <p>The deletion process:</p> * <ul>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
} return getAvailableClient().generateAnswer(userMessage, documents, history); } /** * Regenerates a search query when the previous query failed. * * @param userMessage the user's original message * @param failedQuery the query that failed * @param failureReason the reason for failureCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 11:10:51 GMT 2026 - 17.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
protected int pageCount; /** * Indicates if there is a next page of search results. */ protected boolean nextPage; /** * Indicates if there is a previous page of search results. */ protected boolean prevPage; /** * The starting record number for the current page of search results. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 25.8K bytes - Click Count (0)