Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getValidationError (0.11 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/suggest/request/Request.java

         * @return A Promise that will be resolved with the response or rejected with an error.
         */
        public Deferred<T>.Promise execute(final Client client) {
            final String error = getValidationError();
            if (!Strings.isNullOrEmpty(error)) {
                throw new IllegalArgumentException(error);
            }
    
            final Deferred<T> deferred = new Deferred<>();
            try {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Nov 23 11:21:40 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

                @Override
                public void onFailure(final Exception e) {
                    deferred.reject(e);
                }
            });
        }
    
        @Override
        protected String getValidationError() {
            return null;
        }
    
        /**
         * Builds the OpenSearch query for popular words.
         * @return The QueryBuilder instance.
         */
        protected QueryBuilder buildQuery() {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Thu Aug 07 02:41:28 GMT 2025
    - 9.2K bytes
    - Click Count (0)
Back to Top