Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for showframe (0.52 sec)

  1. src/runtime/traceback.go

    func gcallers(gp *g, skip int, pcbuf []uintptr) int {
    	var u unwinder
    	u.init(gp, unwindSilentErrors)
    	return tracebackPCs(&u, skip, pcbuf)
    }
    
    // showframe reports whether the frame with the given characteristics should
    // be printed during a traceback.
    func showframe(sf srcFunc, gp *g, firstFrame bool, calleeID abi.FuncID) bool {
    	mp := getg().m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

        <a title="{{.Help.ignore}}" id="action-ignore" href="?">Ignore</a>
        <a title="{{.Help.hide}}" id="action-hide" href="?">Hide</a>
        <a title="{{.Help.show_from}}" id="action-showfrom" href="?">Show from</a>
      </div>
      {{template "script" .}}
      {{template "stacks_js"}}
      <script>
        pprofUnitDefs = {{.UnitDefs}};
        stackViewer({{.Stacks}}, {{.Nodes}});
      </script>
    </body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    			filters = append(filters, k+"="+v)
    		}
    	}
    	addFilter("focus", cfg.Focus)
    	addFilter("ignore", cfg.Ignore)
    	addFilter("hide", cfg.Hide)
    	addFilter("show", cfg.Show)
    	addFilter("show_from", cfg.ShowFrom)
    	addFilter("tagfocus", cfg.TagFocus)
    	addFilter("tagignore", cfg.TagIgnore)
    	addFilter("tagshow", cfg.TagShow)
    	addFilter("taghide", cfg.TagHide)
    
    	ropt := &report.Options{
    		CumSort:      cfg.Sort == "cum",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	Ignore       string  `json:"ignore,omitempty"`
    	PruneFrom    string  `json:"prune_from,omitempty"`
    	Hide         string  `json:"hide,omitempty"`
    	Show         string  `json:"show,omitempty"`
    	ShowFrom     string  `json:"show_from,omitempty"`
    	TagFocus     string  `json:"tagfocus,omitempty"`
    	TagIgnore    string  `json:"tagignore,omitempty"`
    	TagShow      string  `json:"tagshow,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        setHrefParam('action-source-tab', 'f', box.src);
        setHrefParam('action-focus', 'f', box.src);
        setHrefParam('action-ignore', 'i', box.src);
        setHrefParam('action-hide', 'h', box.src);
        setHrefParam('action-showfrom', 'sf', box.src);
        toggleClass(box.src, 'hilite2', true);
        actionTarget = box;
        actionMenuOn = true;
      }
    
      function hideActionMenu() {
        actions.style.display = 'none';
    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