- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 188 for Unclear (0.04 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
* @return HTML response for the reset list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse reset(final SearchForm form) { saveToken(); jobLogPager.clear(); return asHtml(path_AdminJoblog_AdminJoblogJsp).renderWith(data -> { searchPaging(data, form); }); } /** * Returns to the job log list page. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
} @Override public boolean retainAll(final Collection<?> c) { return parent.retainAll(c); } @Override public void clear() { parent.clear(); } @Override public E get(final int index) { return parent.get(index); } @OverrideCreated: 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/chat/chat.jsp
<span class="filter-check-label">${f:h(item.label)}</span> </label> </c:forEach> </div> <div class="filter-dropdown-footer"> <button type="button" class="filter-clear-group btn btn-sm btn-link"><la:message key="labels.chat_clear" /></button> </div> </div> </div> </c:if> <c:forEach var="facetQueryView" items="${facetQueryViewList}">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 10.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
for (int j = 0; j < 10; j++) { assertTrue("Thread " + i + " should find doc" + j, containsResults[i][j]); } } } /** * Test that clear operation on deleteUrlList is thread-safe. */ @Test public void test_deleteUrlList_clearOperation() throws Exception { IndexUpdateCallback mockCallback = new IndexUpdateCallback() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy
def rule = withContext(new IncubatingMissingRule([:])) def annotations = [] jApiType.annotations >> annotations when: annotations.clear() then: rule.maybeViolation(jApiType).humanExplanation =~ 'Is not annotated with @Incubating' when: annotations.add(incubatingAnnotation) then:
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 06 17:52:09 GMT 2025 - 16K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
* @return HTML response for the duplicate host list page with cleared search */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse reset(final SearchForm form) { duplicateHostPager.clear(); return asHtml(path_AdminDuplicatehost_AdminDuplicatehostJsp).renderWith(data -> { searchPaging(data, form); }); } /** * Sets up search pagination data for rendering.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 15.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
* @param form the search form * @return HTML response for the reset list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse reset(final SearchForm form) { keyMatchPager.clear(); return asHtml(path_AdminKeymatch_AdminKeymatchJsp).renderWith(data -> { searchPaging(data, form); }); } /** * Sets up data for search result pagination. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 16.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java
assertTrue(ldapManager.allowEmptyGroupAndRole(user)); allowEmptyPermission.set(false); assertTrue(ldapManager.allowEmptyGroupAndRole(user)); permissionList.clear(); permissionList.add("Raaa"); allowEmptyPermission.set(true); assertTrue(ldapManager.allowEmptyGroupAndRole(user)); allowEmptyPermission.set(false);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class SystemUtilTest extends UnitFessTestCase { @Test public void test_getSearchEngineHttpAddress_null() { // Clear the system property to test null case String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS); System.clearProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS); try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java
*/ public CharMappingPager() { // Default constructor } /** * Clears all search criteria and resets pagination settings. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false; existNextPage = false; pageSize = getDefaultPageSize(); currentPageNumber = getDefaultCurrentPageNumber();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.5K bytes - Click Count (0)