Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for _setTimeout (0.08 seconds)

  1. src/main/webapp/js/help.js

        },
        minterm: 1,
        adjustWidthVal: 11,
        searchForm: $("#searchForm")
      };
    
      $("#searchForm").on("submit", function() {
        $searchButton.prop("disabled", true);
        setTimeout(function() {
          $searchButton.prop("disabled", false);
        }, BUTTON_DISABLE_DURATION);
        return true;
      });
    
      $(document).on("click touchend", function(e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  2. src/main/webapp/js/search.js

        $searchButton.prop("disabled", true);
        var $icon = $searchButton.find("i.fa-search");
        if ($icon.length > 0) {
          $icon.removeClass("fa fa-search").addClass("spinner-border spinner-border-sm");
        }
        setTimeout(function() {
          $searchButton.prop("disabled", false);
          var $spinner = $searchButton.find(".spinner-border");
          if ($spinner.length > 0) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  3. src/main/webapp/js/advance.js

        },
        minterm: 1,
        adjustWidthVal: 11,
        searchForm: $("#searchForm")
      };
    
      $("#searchForm").on("submit", function() {
        $searchButton.prop("disabled", true);
        setTimeout(function() {
          $searchButton.prop("disabled", false);
        }, BUTTON_DISABLE_DURATION);
        return true;
      });
    
      if (typeof $.fn.suggestor === "function") {
        $("#as_q").suggestor(SUGGESTOR_CONFIG);
      }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  4. src/main/webapp/js/index.js

        $searchButton.prop("disabled", true);
        var $icon = $searchButton.find("i.fa-search");
        if ($icon.length > 0) {
          $icon.removeClass("fa fa-search").addClass("spinner-border spinner-border-sm");
        }
        setTimeout(function() {
          $searchButton.prop("disabled", false);
          var $spinner = $searchButton.find(".spinner-border");
          if ($spinner.length > 0) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java

                        .prepareNodesHotThreads()
                        .setIgnoreIdleThreads(ignoreIdleThreads)
                        .setInterval(interval)
                        .setThreads(threads)
                        .setTimeout(timeout)
                        .setType(type)
                        .execute()
                        .actionGet(timeout);
                append(buf, "cluster_name", () -> response.getClusterName().value()).append(',');
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                <script type="text/javascript">
                    document.addEventListener("DOMContentLoaded", function(event) {
                        // run after the report's own JavaScript based filtering logic
                        setTimeout(function() {
                            const level = document.querySelectorAll("#filter-preset")[0].value;
                            document.querySelectorAll("a[role='menuitem']").forEach(function(a) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 22 12:18:18 GMT 2026
    - 7K bytes
    - Click Count (0)
  7. src/main/webapp/js/suggestor.js

            if (!isFocusList && started && !suggestingSts) {
              // Clear existing timer and set new one to debounce rapid inputs
              clearTimeout(debounceTimer);
              debounceTimer = setTimeout(function () {
                suggestor.suggest();
              }, 300); // 300ms delay for debouncing
            }
          }
        });
    
        return this;
      };
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  8. 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)
  9. 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