- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 16 for facetResponse (0.23 seconds)
-
src/main/java/org/codelibs/fess/util/FacetResponse.java
*/ protected List<Field> fieldList = new ArrayList<>(); /** * Constructs a FacetResponse from OpenSearch aggregations. * Processes both field facets and query facets from the aggregation results. * * @param aggregations the OpenSearch aggregations containing facet data, may be null */ public FacetResponse(final Aggregations aggregations) { if (aggregations != null) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Nov 23 11:39:05 GMT 2025 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
*/ @Test public void test_searchResultWithFacetResponse() { final FacetResponse facetResponse = new FacetResponse(null); final SearchResult result = SearchResult.create().allRecordCount(100).facetResponse(facetResponse).build(); assertNotNull(result.getFacetResponse()); assertEquals(facetResponse, result.getFacetResponse()); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
* Sets the facet response containing aggregated facet information. * * @param facetResponse The facet response * @return This builder instance for method chaining */ public SearchResultBuilder facetResponse(final FacetResponse facetResponse) { this.facetResponse = facetResponse; return this; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
/** The total execution time for the search request in milliseconds. */ protected long execTime; /** The facet response containing aggregated search facets and their counts. */ protected FacetResponse facetResponse; /** Flag indicating whether the search results are partial (not complete). */ protected boolean partialResults = false; /** The time taken to execute the search query in milliseconds. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 14.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
// Test with FacetResponse object created from empty Aggregations List<Aggregation> aggregationList = new ArrayList<>(); Aggregations aggregations = new Aggregations(aggregationList); FacetResponse facetResponse = new FacetResponse(aggregations); searchRenderData.setFacetResponse(facetResponse); assertEquals(facetResponse, searchRenderData.getFacetResponse());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 23.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
} @Test public void test_facetResponse_constructor() { FacetResponse facetResponse = null; List<Map<String, Object>> documentList = new ArrayList<>(); QueryResponseList qrList = new QueryResponseList(documentList, 50L, "lte", 200L, false, facetResponse, 10, 20, 0); assertEquals(facetResponse, qrList.getFacetResponse()); assertFalse(qrList.isPartialResults());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 40.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
} /** * Sets the facet response containing aggregated search facets. * * @param facetResponse The facet response */ public void setFacetResponse(final FacetResponse facetResponse) { this.facetResponse = facetResponse; } /** * Sets additional highlight parameters to append to URLs. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/searchResults.jsp
</c:if> </div> </li> </c:forEach> </ol> <aside class="col-md-4 d-none d-md-block"> <%-- Side Content --%> <c:if test="${facetResponse != null}"> <c:forEach var="fieldData" items="${facetResponse.fieldList}"> <c:if test="${fieldData.name == 'label' && fieldData.valueCountMap.size() > 0}"> <ul class="list-group mb-2">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 12.2K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
final String allRecordCountRelation, final long queryTime, final boolean partialResults, final FacetResponse facetResponse, final int start, final int pageSize, final int offset) { return new QueryResponseList(documentList, allRecordCount, allRecordCountRelation, queryTime, partialResults, facetResponse, start, pageSize, offset); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 25 02:13:14 GMT 2025 - 28K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
requestedTime = data.getRequestedTime(); final FacetResponse facetResponse = data.getFacetResponse(); if (facetResponse != null && facetResponse.hasFacetResponse()) { // facet field if (facetResponse.getFieldList() != null) { facetField = facetResponse.getFieldList().stream().map(field -> {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 25.8K bytes - Click Count (0)