- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 281 for item3 (0.04 seconds)
-
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
assertEquals(2, result.size()); CharMappingItem item1 = result.get(0); assertArrayEquals(new String[] { "α", "β" }, item1.getInputs()); assertEquals("γ", item1.getOutput()); CharMappingItem item2 = result.get(1); assertArrayEquals(new String[] { "中", "文" }, item2.getInputs()); assertEquals("字", item2.getOutput()); } // Test with very long input line
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
// Test getting non-existing item OptionalEntity<ProtwordsItem> item = protwordsFile.get(999); assertFalse(item.isPresent()); } @Test public void test_get_withUnloadedData() { // Test getting item when data is not loaded yet OptionalEntity<ProtwordsItem> item = protwordsFile.get(1); assertTrue(item.isPresent()); assertEquals("test1", item.get().getInput()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/searchResults.jsp
<ul class="list-group mb-2"> <li class="list-group-item text-uppercase"><la:message key="${facetQueryView.title}" /></li> <c:set var="facetFound" value="F"/> <c:forEach var="queryEntry" items="${facetQueryView.queryMap}"> <c:if test="${facetResponse.queryCountMap[queryEntry.value] > 0}"> <li class="list-group-item"><la:linkCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 12.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
* * @param item the character mapping item to update */ @Override public synchronized void update(final CharMappingItem item) { try (MappingUpdater updater = new MappingUpdater(item)) { reload(updater); } } /** * Deletes a character mapping item from the dictionary file. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 15.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymItemTest.java
// Test that defensive copy handles null arrays correctly SynonymItem item1 = new SynonymItem(1, new String[] { "a" }, new String[] { "x" }); // Set to null item1.setNewInputs(null); item1.setNewOutputs(null); // Should return null, not crash assertNull(item1.getNewInputs()); assertNull(item1.getNewOutputs()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8K bytes - Click Count (1) -
src/main/webapp/WEB-INF/view/admin/systeminfo/admin_systeminfo.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 4.7K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride.jsp
<c:forEach var="p" varStatus="s" items="${pager.pageNumberList}"> <li <c:if test="${p == pager.currentPageNumber}">class="page-item active"</c:if>> <la:linkCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 10.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/advance.jsp
/></label> <div class="col-lg-5 col-md-8 col-sm-7 col-6"> <la:select property="lang" styleId="langSearchOption" multiple="true" styleClass="form-control"> <c:forEach var="item" items="${langItems}"> <la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option> </c:forEach> </la:select> </div> </div> <c:if test="${displayLabelTypeItems}"> <div class="mb-3 row">
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 14.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
} /** * Retrieves a specific Kuromoji dictionary item by ID. * * @param dictId the dictionary ID * @param id the ID of the Kuromoji item to retrieve * @return JSON response containing the Kuromoji dictionary item */ // GET /api/admin/dict/kuromoji/setting/{dictId}/{id} @ExecuteCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/searchNoResult.jsp
<div class="mt-3"> <p class="mb-1"><la:message key="labels.search_popular_word_word" /></p> <p> <c:forEach var="item" varStatus="s" items="${popularWords}"> <la:link href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}" styleClass="btn btn-outline-secondary btn-sm me-1 mb-1">${f:h(item)}</la:link> </c:forEach> </p> </div> </c:if> </div> </div>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 969 bytes - Click Count (0)