- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for facet1 (0.05 sec)
-
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
public void test_getFacetFields() { String[] fields = { "facet1", "facet2", "facet3" }; queryFieldConfig.setFacetFields(fields); String[] result = queryFieldConfig.getFacetFields(); assertSame(fields, result); } public void test_setFacetFields() { String[] fields = { "facet1", "facet2", "facet3" }; queryFieldConfig.setFacetFields(fields);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K 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) -
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/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/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
this.similarDocHash = similarDocHash; } return this; } /** * Sets the facet information for aggregations. * * @param facetInfo the facet configuration * @return this builder for method chaining */ public SearchConditionBuilder facetInfo(final FacetInfo facetInfo) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
} } } } builder.addDocument(docMap); } // facet final Aggregations aggregations = searchResponse.getAggregations(); if (aggregations != null) { builder.facetResponse(new FacetResponse(aggregations)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
*/ public CrawlingInfoHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(CrawlingInfoHelper.class); /** * Key used for facet count aggregations. */ public static final String FACET_COUNT_KEY = "count"; /** * Map containing crawling information parameters. */ protected Map<String, String> infoMap; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} buf.append('}'); } } buf.append(']'); if (facetResponse != null && facetResponse.hasFacetResponse()) { // facet field buf.append(','); buf.append("\"facet_field\":["); if (facetResponse.getFieldList() != null) { boolean first1 = true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ThrowablesTest.java
// We're testing that the method is in fact equivalent to throwing the exception directly. @SuppressWarnings("ThrowIfUncheckedKnownUnchecked") public void testThrowIfUnchecked_unchecked() { assertThrows( SomeUncheckedException.class, () -> throwIfUnchecked(new SomeUncheckedException())); } // We're testing that the method is in fact equivalent to throwing the exception directly.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.9K bytes - Viewed (0)