- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 38 for faceva (0.24 sec)
-
src/main/resources/fess_indices/_aws/fess.json
"erano", "fui", "fosti", "fu", "fummo", "foste", "furono", "fossi", "fosse", "fossimo", "fossero", "essendo", "faccio", "fai", "facciamo", "fanno", "faccia", "facciate", "facciano", "farò", "farai", "farà ", "faremo", "farete", "faranno", "farei", "faresti", "farebbe", "faremmo", "fareste", "farebbero", "facevo", "facevi", "faceva", "facevamo", "facevate", "facevano", "feci", "facesti", "fece", "facemmo", "faceste", "fecero", "facessi", "facesse", "facessimo", "facessero", "facendo", "sto", "stai", "sta",...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 117.3K bytes - Viewed (0) -
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/util/FacetResponse.java
/** * List of field facets containing aggregated field values and their counts. */ 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
/** Array of field names to create facets for */ public String[] field; /** Array of query strings to create query facets for */ public String[] query; /** Maximum number of facet values to return */ 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") */
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/entity/FacetQueryView.java
import org.codelibs.fess.util.ComponentUtil; import jakarta.annotation.PostConstruct; /** * View class for managing facet query configurations and their display. * This class handles the setup and organization of query facets for the search interface, * including automatic generation of file type facets and custom query mappings. */ public class FacetQueryView { /** Logger instance for this class */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
* including the actual search results, pagination information, facet data, * execution timing, and highlighting parameters. */ public class SearchRenderData { /** List of search result documents. */ protected List<Map<String, Object>> documentItems; /** Facet response containing aggregated search facets. */ protected FacetResponse facetResponse;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
*/ public boolean isPartialResults() { return partialResults; } /** * Gets the facet response containing aggregated facet information. * * @return The facet response, or null if no facets were requested */ public FacetResponse getFacetResponse() { return facetResponse; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
flag = true; } } return flag; } /** * Checks if the specified sort value is valid for facet sorting. * * @param sort the sort value to check * @return true if the sort value is valid for facets ("count" or "index"), false otherwise */ public boolean isFacetSortValue(final String sort) { return "count".equals(sort) || "index".equals(sort);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
*/ public void setExecTime(final long execTime) { this.execTime = execTime; } /** * Gets the facet response containing aggregated search facets and their counts. * * @return the facet response, or null if no facets were requested */ public FacetResponse getFacetResponse() { return facetResponse; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
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)