Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for facet1 (0.03 sec)

  1. src/main/resources/fess_indices/fess/it/stopwords.txt

    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
    stiamo
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/resources/fess_indices/fess/gl/stopwords.txt

    dos
    dun
    duns
    dunha
    dunhas
    e
    el
    ela
    elas
    eles
    en
    era
    eran
    esa
    esas
    ese
    eses
    esta
    estar
    estaba
    está
    están
    este
    estes
    estiven
    estou
    eu
    é
    facer
    foi
    foron
    fun
    había
    hai
    iso
    isto
    la
    las
    lle
    lles
    lo
    los
    mais
    me
    meu
    meus
    min
    miña
    miñas
    moi
    na
    nas
    neste
    nin
    no
    non
    nos
    nosa
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 932 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/SneakyThrows.java

       * rather than just the {@link RuntimeException} or {@link Error} that should be possible. (And in
       * fact the static type of {@link Throwable} is occasionally justified even for a method with no
       * {@code throws} clause: Some such methods can in fact throw a checked exception (e.g., by
       * calling code written in Kotlin).) Typically, we want to let a {@link Throwable} from such a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Dec 30 18:44:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/SneakyThrows.java

       * rather than just the {@link RuntimeException} or {@link Error} that should be possible. (And in
       * fact the static type of {@link Throwable} is occasionally justified even for a method with no
       * {@code throws} clause: Some such methods can in fact throw a checked exception (e.g., by
       * calling code written in Kotlin).) Typically, we want to let a {@link Throwable} from such a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Dec 30 18:44:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top