Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for facet (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

             * The time when the search request was made.
             */
            protected long requestedTime;
            /**
             * The list of facet fields and their values.
             */
            protected List<Map<String, Object>> facetField;
            /**
             * The list of facet queries and their counts.
             */
            protected List<Map<String, Object>> facetQuery;
    
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/test/java/org/codelibs/fess/util/FacetResponseTest.java

            String decoded = new String(BaseEncoding.base64().decode(encoded), StandardCharsets.UTF_8);
    
            assertEquals(emptyString, decoded);
        }
    
        public void test_facet_prefix_usage() {
            // Test that facet prefixes can be used correctly
            String fieldName = "category";
            String encodedFieldName = BaseEncoding.base64().encode(fieldName.getBytes(StandardCharsets.UTF_8));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. 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)
Back to top