- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 180 for TERM (0.03 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/KeyMatchDbm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/relatedcontent/admin_relatedcontent_details.jsp
<th style="width: 25%"><la:message key="labels.related_content_term"/></th> <td>${f:h(term)}<la:hidden property="term"/></td> </tr> <tr> <th><la:message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
*/ protected void setupListCondition(final KeyMatchCB cb, final KeyMatchPager keyMatchPager) { if (StringUtil.isNotBlank(keyMatchPager.term)) { cb.query().setTerm_Wildcard(wrapQuery(keyMatchPager.term)); } if (StringUtil.isNotBlank(keyMatchPager.query)) { cb.query().setQuery_Wildcard(wrapQuery(keyMatchPager.query)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_details.jsp
<th style="width: 25%"><la:message key="labels.key_match_term"/></th> <td>${f:h(term)}<la:hidden property="term"/></td> </tr> <tr> <th><la:message key="labels.key_match_query"/></th>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java
while (stream.incrementToken()) { final CharTermAttribute att = stream.getAttribute(CharTermAttribute.class); final String term = att.toString(); final int pos = inputStr.indexOf(term, offset); if (pos > 0) { final String tmp = inputStr.substring(offset, pos); kanaBuf.append(transliterator.transliterate(tmp));
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/SearchForm.java
*/ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The search term field for key match configuration. */ public String term; /** * The query field for key match configuration. */ public String query;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/SearchBody.java
*/ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Search term for related content */ public String term; /** Content text for related content */ public String content;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
/** Current page number being displayed. */ private int currentPageNumber; /** Related content ID for filtering. */ public String id; /** Search term for filtering related content. */ public String term; /** Content text for filtering related content. */ public String content; /** User who created the related content. */ public String createdBy;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java
*/ package org.codelibs.fess.query; import static org.codelibs.core.stream.StreamUtil.stream; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.apache.lucene.index.Term; import org.apache.lucene.search.PhraseQuery; import org.apache.lucene.search.Query; import org.codelibs.fess.Constants; import org.codelibs.fess.entity.QueryContext; import org.codelibs.fess.exception.InvalidQueryException;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
} private String convertToJapaneseReading(String term) { // Simple simulation of Japanese reading conversion if ("東京".equals(term)) { return "トウキョウ"; } else if ("大阪".equals(term)) { return "オオサカ"; } else { return term.toUpperCase(); } } } /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0)