Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for _setTimeout (0.04 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/webapp/css/admin/respond.min.js

    ild(b),k.style.fontSize=d,e&&(c.style.fontSize=e),a=i=parseFloat(a)},u=function(b){var c="clientWidth",d=k[c],e="CSS1Compat"===j.compatMode&&d||j.body[c]||d,f={},o=s[s.length-1],r=(new Date).getTime();if(b&&g&&p>r-g)return a.clearTimeout(h),h=a.setTimeout(u,p),void 0;g=r;for(var v in l)if(l.hasOwnProperty(v)){var w=l[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?i||t():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?i||t():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A|...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Oct 08 12:14:13 GMT 2015
    - 4.3K bytes
    - Click Count (0)
  6. 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)
  7. 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)
Back to Top