- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 490 for match3 (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
try { helper.init(); assertNotNull(helper.suggester()); } catch (Exception e) { assertTrue(true); } } @Test public void test_suggester() { try { assertNull(suggestHelper.suggester()); } catch (Exception e) { assertTrue(true); } } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/searchNoResult.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <%-- query did not match any document --%> <div id="result" class="row"> <div class="col-md-8"> <div class="text-center py-4"> <p class="mb-3"><i class="fa fa-search fa-3x text-muted" aria-hidden="true"></i></p> <p class="mb-2"><la:message key="labels.did_not_match" arg0="${displayQuery}" /></p> <p class="text-muted"><la:message key="labels.did_not_match_suggestion" /></p>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 969 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/SearchBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.keymatch; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for key match administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ModelBuilderSupport.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
try { keyMatchHelper.buildQuery(keywordList, functionBuilders); } catch (Exception e) { // Expected due to missing dependencies in test environment assertTrue(true); return; } assertEquals(0, functionBuilders.size()); } catch (Exception e) { // Expected due to missing dependencies in test environmentCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
assertTrue(true); } catch (Exception e) { assertTrue(true); } } @Test public void test_crawl_withEmptyLists() { try { webFsIndexHelper.crawl("sessionId", Collections.emptyList(), Collections.emptyList()); assertTrue(true); } catch (Exception e) { assertTrue(true); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.6K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt
if (contributorsInPullRequestsButNotInReleaseNotes.isNotEmpty()) { error( """The contributors in the release notes $releaseNotes don't match the contributors in the PRs. Release notes: $contributorsInReleaseNotes Pull requests: $contributorsFromPullRequests Missed in notes:$contributorsInPullRequestsButNotInReleaseNotesCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 28 08:29:24 GMT 2024 - 1.9K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AcceptedRegressionsRulePostProcess.java
if (!left.isEmpty()) { String formattedLeft = CollectionUtils.join("\n", left); throw new RuntimeException("The following regressions are declared as accepted, but didn't match any rule:\n\n" + formattedLeft); } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jun 09 08:16:49 GMT 2021 - 1.7K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/filters/AnonymousClassesFilter.groovy
import javassist.CtClass import java.util.regex.Pattern /** * Matches JVM anonymous classes. */ class AnonymousClassesFilter implements ClassFilter { private static final Pattern PATTERN = Pattern.compile('.*\\$[0-9]+$') @Override boolean matches(CtClass ctClass) { return ctClass.name.matches(PATTERN) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
String expectedMessage = "Theme loading error"; try { throw new ThemeException(expectedMessage); } catch (ThemeException e) { assertEquals(expectedMessage, e.getMessage()); assertNull(e.getCause()); } catch (Exception e) { fail("Should have caught ThemeException, but caught: " + e.getClass()); } } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.4K bytes - Click Count (0)