Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for _setTimeout (0.12 seconds)

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

  1. src/main/webapp/js/chat.js

            setTimeout(function() {
                button.removeClass('copied').html(originalHtml);
            }, 2000);
        }
    
        function showCopyError(button) {
            var originalHtml = button.html();
            button.html('<i class="fa fa-times"></i> ' + config.labels.copyFailed);
            setTimeout(function() {
                button.html(originalHtml);
            }, 2000);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                final long queryTimeout = fessConfig.getQueryTimeoutAsInteger().longValue();
                if (queryTimeout >= 0) {
                    searchRequestBuilder.setTimeout(TimeValue.timeValueMillis(queryTimeout));
                }
    
                try {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Query DSL: {}", searchRequestBuilder);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top