Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 429 for quer (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/service/UserService.java

         *
         * @param cb the condition bean for the user query
         * @param userPager the pager containing search criteria
         */
        protected void setupListCondition(final UserCB cb, final UserPager userPager) {
            if (userPager.id != null) {
                cb.query().docMeta().setId_Equal(userPager.id);
            }
            // TODO Long, Integer, String supported only.
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Configuration class for query field mappings in the Fess search engine.
     * This class manages field configurations for various query operations including
     * response fields, search fields, facet fields, sort fields, and highlighting.
     * It initializes field mappings from the FessConfig and provides methods to
     * query field properties and capabilities.
     */
    public class QueryFieldConfig {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java

         * The search term that triggers the key match.
         */
        @Required
        @Size(max = 100)
        public String term;
    
        /**
         * The query to execute when the term matches.
         */
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String query;
    
        /**
         * The maximum number of results to return.
         */
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. android-test/src/androidTest/README.md

    ...
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseHeadersEnd: Response{protocol=h2, code=200, message=, url=https://1.1.1.1/dns-query?dns=AAABAAABAAAAAAAAA3d3dwhmYWNlYm9vawNjb20AABwAAQ}
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseBodyStart
    01-01 12:53:32.811 10999 11089 D OkHttp  : [49 ms] responseBodyEnd: byteCount=128
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 22 08:12:58 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

            - name: facet.field
              in: query
              description: Facet field name
              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
                  type: string
                example: [label]
            - name: facet.query
              in: query
              description: Facet query
              required: false
              style: form
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_it.properties

    labels.num=Numero
    labels.pn=Numero di pagina
    labels.protocolScheme=Schema
    labels.purgeByBots=Elimina per Bot
    labels.logLevel=Livello di log
    labels.purgeSearchLogDay=Elimina log di ricerca
    labels.query=Query
    labels.queryId=ID query
    labels.rt=rt
    labels.searchLog=Log di ricerca
    labels.sort=Ordina
    labels.start=Posizione iniziale
    labels.loginRequired=Login richiesto
    labels.loginLink=Mostra link di login
    labels.threadName=Nome thread
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/MatchAllQueryCommand.java

     */
    package org.codelibs.fess.query;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.apache.lucene.search.MatchAllDocsQuery;
    import org.apache.lucene.search.Query;
    import org.codelibs.fess.entity.QueryContext;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Query command for match all documents query.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsUserInfoCB.java

        // ===================================================================================
        //                                                                               Query
        //                                                                               =====
        public BsUserInfoCQ query() {
            assertQueryPurpose();
            return doGetConditionQuery();
        }
    
        protected BsUserInfoCQ doGetConditionQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsGroupCB.java

        // ===================================================================================
        //                                                                               Query
        //                                                                               =====
        public BsGroupCQ query() {
            assertQueryPurpose();
            return doGetConditionQuery();
        }
    
        protected BsGroupCQ doGetConditionQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  10. MIGRATION.md

    For the more details, see the implementation code in [GsaApiManager](/src/main/java/org/codelibs/fess/api/gsa/GsaApiManager.java).
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 05 06:12:02 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top