Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for detailsbox (0.28 sec)

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

      </div>
    
      <div class="description">
        <a title="{{.Help.details}}" href="#" id="details">{{.Title}}</a>
        <div id="detailsbox">
          {{range .Legend}}<div>{{.}}</div>{{end}}
        </div>
      </div>
    </div>
    
    <div id="dialog-overlay"></div>
    
    <div class="dialog" id="save-dialog">
      <div class="dialog-header">Save options as</div>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    }
    .header .description {
      width: 100%;
      text-align: right;
      white-space: nowrap;
    }
    @media screen and (max-width: 799px) {
      .header input {
        display: none;
      }
    }
    #detailsbox {
      display: none;
      z-index: 1;
      position: fixed;
      top: 40px;
      right: 20px;
      background-color: #ffffff;
      box-shadow: 0 1px 5px rgba(0,0,0,.3);
      line-height: 24px;
      padding: 1em;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          return options.current();
        }
        return new Map();
      }
    
      function handleDetails(e) {
        e.preventDefault();
        const detailsText = document.getElementById('detailsbox');
        if (detailsText != null) {
          if (detailsText.style.display === 'block') {
            detailsText.style.display = 'none';
          } else {
            detailsText.style.display = 'block';
          }
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        div.title = details(box) + ' │ ' + src.FullName + (src.Inlined ? "\n(inlined)" : "");
        detailBox.innerText = summary(box.sumpos, box.sumneg);
        // Highlight all boxes that have the same source as box.
        toggleClass(box.src, 'hilite2', true);
      }
    
      function handleLeave(box) {
        if (actionMenuOn) return;
        detailBox.innerText = '';
        toggleClass(box.src, 'hilite2', false);
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top