- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 111 for facet3 (0.9 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
} /** * Creates a facet info. * * @param request The request. * @return The facet info. */ protected FacetInfo createFacetInfo(final HttpServletRequest request) { final String[] fields = getParamValueArray(request, "facet.field"); final String[] queries = getParamValueArray(request, "facet.query"); if (fields.length == 0 && queries.length == 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
split(values[1], "\t").of(subStream -> subStream.map(String::trim).filter(StringUtil::isNotEmpty).forEach(v -> { final String[] facet = StringUtils.split(v, "=", 2); if (facet.length == 2) { facetQueryView.addQuery(facet[0], facet[1]); } })); facetQueryView.init(); facetQueryViewList.add(facetQueryView);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
request.setParameterValues("facet.field", new String[] { "field1", "field2" }); request.setParameterValues("facet.query", new String[] { "query1", "query2" }); request.setParameter("facet.size", "100"); request.setParameter("facet.minDocCount", "5"); request.setParameter("facet.sort", "count"); request.setParameter("facet.missing", "other");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
Alice was rather doubtful whether she ought not to lie down on her face like the three gardeners, but she could not remember ever having heard of such a rule at processions; `and besides, what would be the use of a procession,' thought she, `if people had all to lie down upon their faces, so that they couldn't see it?' So she stood still where she was, and waited.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Apr 21 02:27:51 UTC 2017 - 145.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
/** Prefix for geographic query parameters */ private static final String GEO_PREFIX = "geo."; /** Prefix for facet query parameters */ private static final String FACET_PREFIX = "facet."; /** Format identifier for PDF date parsing */ private static final String PDF_DATE = "pdf_date"; /** Regular expression pattern for matching email addresses */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
} /** * Gets the default facet information configuration. * * @return the default facet information, or null if not configured */ public FacetInfo getDefaultFacetInfo() { return defaultFacetInfo; } /** * Sets the default facet information configuration for search results. * * @param defaultFacetInfo the facet information to use as default */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/resources/fess_config.properties
query.fuzzy.transpositions=true # facet # Fields for facet queries. query.facet.fields=label # Size of facet fields. query.facet.fields.size=100 # Minimum document count for facet fields. query.facet.fields.min_doc_count=1 # Sort order for facet fields. query.facet.fields.sort=count.desc # Value for missing facet fields. query.facet.fields.missing= # Facet queries definition. query.facet.queries=\
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/fe.tld
<example> ${fe:pagingQuery("ex_q=timestamp:")} </example> </function> <function> <description> Returns query parameters for Facet. </description> <name>facetQuery</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.lang.String facetQuery()</function-signature> <example>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:38:54 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
// ============================================================ // Facet and Query Constants // ============================================================ /** Prefix for facet field identifiers. */ public static final String FACET_FIELD_PREFIX = "field:"; /** Prefix for facet query identifiers. */ public static final String FACET_QUERY_PREFIX = "query:";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0)