Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 429 for quer (0.48 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

    import org.lastaflute.web.response.render.RenderData;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    import org.lastaflute.web.validation.VaMessenger;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    import jakarta.annotation.Resource;
    import jakarta.servlet.http.HttpServletRequest;
    
    /**
     * Admin action for Search List.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/exception/InvalidQueryException.java

    import org.codelibs.fess.mylasta.action.FessMessages;
    import org.lastaflute.web.validation.VaMessenger;
    
    /**
     * Exception thrown when an invalid query is encountered.
     * This exception is typically used in search contexts where a provided
     * query is malformed, contains invalid syntax, or violates query constraints.
     */
    public class InvalidQueryException extends FessSystemException {
    
        /** Serial version UID for serialization */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            private final String query;
    
            private final String[] fields;
    
            private final int num;
    
            private final HttpServletRequest request;
    
            private final String[] tags;
    
            /**
             * Constructor for RequestParameter.
             * @param request The HTTP servlet request
             * @param query The search query string
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_en.properties

    labels.notificationTo=Notification To
    labels.num=Num
    labels.pn=Page Number
    labels.protocolScheme=Scheme
    labels.purgeByBots=Purge Bots
    labels.logLevel=Log Level
    labels.purgeSearchLogDay=Purge Search Log
    labels.query=Query
    labels.queryId=Query ID
    labels.rt=rt
    labels.searchLog=Search Log
    labels.sort=Sort
    labels.start=Start
    labels.loginRequired=Login Required
    labels.loginLink=Show Login Link
    labels.threadName=Thread Name
    labels.url=URL
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt

          ) {
            builder.query("a${value}z")
          }
    
          override operator fun get(url: HttpUrl): String {
            val query = url.query
            return query!!.substring(1, query.length - 1)
          }
        },
    
        QUERY_VALUE {
          override fun urlString(value: String): String = "http://example.com/?q=a${value}z"
    
          override fun encodedValue(url: HttpUrl): String {
            val query = url.encodedQuery
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

                    cb.query().setDescription_Wildcard(dataConfigPager.description);
                } else if (dataConfigPager.description.endsWith("*")) {
                    cb.query().setDescription_Prefix(dataConfigPager.description.replaceAll("\\*$", StringUtil.EMPTY));
                } else {
                    cb.query().setDescription_MatchPhrase(dataConfigPager.description);
                }
            }
    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/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsDuplicateHostCQ.java

    import org.opensearch.index.query.RangeQueryBuilder;
    import org.opensearch.index.query.RegexpQueryBuilder;
    import org.opensearch.index.query.SpanTermQueryBuilder;
    import org.opensearch.index.query.TermQueryBuilder;
    import org.opensearch.index.query.TermsQueryBuilder;
    import org.opensearch.index.query.WildcardQueryBuilder;
    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 58.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFailureUrlCQ.java

    import org.opensearch.index.query.RangeQueryBuilder;
    import org.opensearch.index.query.RegexpQueryBuilder;
    import org.opensearch.index.query.SpanTermQueryBuilder;
    import org.opensearch.index.query.TermQueryBuilder;
    import org.opensearch.index.query.TermsQueryBuilder;
    import org.opensearch.index.query.WildcardQueryBuilder;
    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 57.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/Constants.java

        /** Query parameter name for main search query. */
        public static final String OPTION_QUERY_Q = "q";
    
        /** Query parameter name for constraint query. */
        public static final String OPTION_QUERY_CQ = "cq";
    
        /** Query parameter name for optional query. */
        public static final String OPTION_QUERY_OQ = "oq";
    
        /** Query parameter name for negative 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)
  10. src/main/java/org/codelibs/fess/app/web/admin/keymatch/SearchForm.java

         */
        public SearchForm() {
        }
    
        /**
         * The search term field for key match configuration.
         */
        public String term;
    
        /**
         * The query field for key match configuration.
         */
        public String query;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
Back to top