- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 986 for term (0.01 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java
/** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /** * The search term that triggers the key match. */ @Required @Size(max = 100) public String term; /** * The query to execute when the term matches. */ @Required @CustomSize(maxKey = "form.admin.max.input.size") public String query; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
public Integer size; /** Minimum document count required for a facet value to be included */ public Long minDocCount; /** Sort order for facet values (e.g., "count.desc", "term.asc") */ public String sort; /** Value to use for documents that don't have the facet field */ public String missing; /** * Default constructor for FacetInfo. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/SearchForm.java
*/ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The search term field for related content. */ public String term; /** * The content field for searching related content. */ public String content;
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/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/web/admin/relatedcontent/CreateForm.java
/** * The CRUD operation mode (create, update, etc.). */ @ValidateTypeFailure public Integer crudMode; /** * The search term for which related content is shown. */ @Required @Size(max = 10000) public String term; /** * The related content to be displayed. */ @Required @Size(max = 10000) public String content; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
* This method configures wildcard searches for term and queries fields, and sets up ordering. * * @param cb the condition bean for building the query * @param relatedQueryPager the pager containing search parameters */ protected void setupListCondition(final RelatedQueryCB cb, final RelatedQueryPager relatedQueryPager) { if (StringUtil.isNotBlank(relatedQueryPager.term)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
} /** * Converts a string to lowercase. * * @param term The string to convert. * @return The lowercase string. */ private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/KeyMatch.java
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/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)