- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for nexte (0.02 sec)
-
src/main/java/org/codelibs/core/collection/ArrayMap.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 20.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchResults.jsp
</li> </c:forEach> <c:if test="${existNextPage}"> <li class="page-item"><la:link styleClass="page-link" aria-label="Next" href="/search/next?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 class="visually-hidden"><la:message key="labels.next_page" /></span>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java
} } // For MSAL4J, if silent refresh fails, return true if token is still valid // Actual refresh will happen during next authentication request return true; } /** * Gets the Entra ID authentication result. * @return The authentication result. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp
<la:link styleClass="page-link" href="next?q=${f:u(q)}&pn=${f:u(currentPageNumber)}&num=${f:u(pageSize)}&labelTypeValue=${f:u(labelTypeValue)}"> <la:message key="labels.next_page"/>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 20.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java
*/ @Override public boolean markSupported() { return inputStream.markSupported(); } /** * Reads the next byte of data from the input stream. * * @return the next byte of data, or -1 if the end of the stream is reached * @throws IOException if an I/O error occurs */ @Override public int read() throws IOException {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
if (!createIndexResponse.isAcknowledged()) { if (logger.isDebugEnabled()) { logger.debug("Failed to create next index (not acknowledged): index={}", indexName); } throw new SuggesterException("Failed to create next index (not acknowledged): " + indexName); }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 21.6K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
return doMove(form, -1); } /** * Navigates to the next page of search results. * * @param form the list form containing current search criteria * @return HTML response with next page results */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse next(final ListForm form) { saveToken(); return doMove(form, 1); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 22.7K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
final long lastValue = lastTime.get(); if (lastValue == 0) { // First access to this host - no delay needed // Set current time to allow proper delay for next access lastTime.set(SystemUtil.currentTimeMillis()); return; } long currentTime = SystemUtil.currentTimeMillis();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java
Set<RequestData> childUrls = e.getChildUrlList(); assertNotNull(childUrls); assertEquals(1, childUrls.size()); RequestData requestData = childUrls.iterator().next(); assertEquals("https://example.com/page1", requestData.getUrl()); } } public void test_processMultipleSitemaps() { // Setup
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
*/ public boolean isExistPrePage() { return currentPageNumber != 1; } /** * Checks if a next page exists. * * @return true if there is a next page, false otherwise */ public boolean isExistNextPage() { return currentPageNumber != allPageCount; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.2K bytes - Viewed (0)