Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for handleSearch (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      function handleKey(e) {
        if (e.keyCode != 13) return;
        setHrefParams(window.location, function (params) {
          params.set('f', search.value);
        });
        e.preventDefault();
      }
    
      function handleSearch() {
        // Delay expensive processing so a flurry of key strokes is handled once.
        if (searchAlarm != null) {
          clearTimeout(searchAlarm);
        }
        searchAlarm = setTimeout(selectMatching, 300);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top