Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for facevo (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      Alice was rather doubtful whether she ought not to lie down on
    her face like the three gardeners, but she could not remember
    ever having heard of such a rule at processions; `and besides,
    what would be the use of a procession,' thought she, `if people
    had all to lie down upon their faces, so that they couldn't see it?'
    So she stood still where she was, and waited.
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/config/openapi/openapi-user.yaml

                example: ["timestamp:[now/d-1d TO *]"]
            - name: facet.size
              in: query
              description: Item size in facets returned by facet.field
              required: false
              schema:
                type: integer
                minimum: 0
                exclusiveMinimum: false
                default: 10
                example: 10
            - name: facet.minDocCount
              in: query
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top