- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 132 for Term (0.02 sec)
-
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
* Configures wildcard searches for term and content fields, and sets up ordering. * * @param cb the condition bean for building the query * @param relatedContentPager the pager containing search parameters */ protected void setupListCondition(final RelatedContentCB cb, final RelatedContentPager relatedContentPager) { if (StringUtil.isNotBlank(relatedContentPager.term)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); final Term term = fuzzyQuery.getTerm(); final String field = getSearchField(context.getDefaultField(), term.field()); if (Constants.DEFAULT_FIELD.equals(field)) { final String text = term.text(); context.addFieldLog(field, text); context.addHighlightedQuery(text);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery.jsp
<div class="collapse <c:if test="${!empty term || !empty queries}">show</c:if>" id="listSearchForm"> <la:form action="/admin/relatedquery/"> <div class="form-group row"> <label for="term" class="col-sm-2 text-sm-right col-form-label"><la:message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/RelatedQueryDbm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help.jsp
</dd> <dt>Boost</dt> <dd> To boost a term use the "^" symbol with a boost factor (a number) at the end of the term you are searching. <pre>Fess^100</pre> </dd> <dt>Fuzzy</dt> <dd> To do a fuzzy search use the "~" symbol at the end of a single word term. For example to search for a term similar in spelling to "Fess" use the fuzzy search: <pre>Fess~0.5</pre> </dd>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/relatedcontent/admin_relatedcontent_edit.jsp
<label for="term" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.related_content_term"/></label> <div class="col-sm-9"> <la:errors property="term"/> <la:text styleId="term" property="term" styleClass="form-control"/>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/SearchBody.java
*/ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Search term for related queries */ public String term; /** Related queries text */ public String queries;
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/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
public void test_getHostKey_emptyVirtualHost() { RelatedContent entity = createRelatedContent("term", "content", ""); String key = relatedContentHelper.getHostKey(entity); assertEquals("", key); } public void test_getHostKey_nullVirtualHost() { RelatedContent entity = createRelatedContent("term", "content", null); String key = relatedContentHelper.getHostKey(entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/RelatedQuery.java
} @Override public String toString() { return "RelatedQuery [createdBy=" + createdBy + ", createdTime=" + createdTime + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", term=" + term + ", queries=" + Arrays.toString(queries) + "]"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/SearchBody.java
*/ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Search term for key matching */ public String term; /** Query pattern for key matching */ public String query;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)