Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for Focus (0.04 sec)

  1. src/internal/profile/filter.go

    	return
    }
    
    // focusedSample checks a sample against focus and ignore regexps.
    // Returns whether the focus/ignore regexps match any tags.
    func focusedSample(s *Sample, focus, ignore TagMatch) (fm, im bool) {
    	fm = focus == nil
    	for key, vals := range s.Label {
    		for _, val := range vals {
    			if ignore != nil && ignore(key, val, 0) {
    				im = true
    			}
    			if !fm && focus(key, val, 0) {
    				fm = true
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutinegen.go

    		gs.finish(ctx)
    
    		// Tell the emitter about the goroutines we want to render.
    		ctx.Resource(uint64(id), gs.name())
    	}
    
    	// Set the goroutine to focus on.
    	if g.focus != trace.NoGoroutine {
    		ctx.Focus(uint64(g.focus))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

        <a title="{{.Help.list}}" id="action-source-tab" href="./source" target="_blank">Show source in new tab</a>
        <hr>
        <a title="{{.Help.focus}}" id="action-focus" href="?">Focus</a>
        <a title="{{.Help.ignore}}" id="action-ignore" href="?">Ignore</a>
        <a title="{{.Help.hide}}" id="action-hide" href="?">Hide</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/templates/productpage.html

            </a>
            {% else %}
              <button type="button" id="sign-in-button" class="rounded-md bg-blue-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-blue-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600">
                Sign in
              </button>
            {% endif %}
          </div>
        </div>
      </div>
    </nav>
    
    <!-- Sign in dialog -->
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/header.html

      </div>
      {{end}}
    
      <div id="refine" class="menu-item">
        <div class="menu-name">
          Refine
          <i class="downArrow"></i>
        </div>
        <div class="submenu">
          <a title="{{.Help.focus}}" href="?" id="focus">Focus</a>
          <a title="{{.Help.ignore}}" href="?" id="ignore">Ignore</a>
          <a title="{{.Help.hide}}" href="?" id="hide">Hide</a>
          <a title="{{.Help.show}}" href="?" id="show">Show</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. hack/make-rules/test-e2e-node.sh

    fi
    
    # Parse the flags to pass to ginkgo
    ginkgoflags="-timeout=24h"
    if [[ ${parallelism} -gt 1 ]]; then
      ginkgoflags="${ginkgoflags} -nodes=${parallelism} "
    fi
    
    if [[ ${focus} != "" ]]; then
      ginkgoflags="${ginkgoflags} -focus=\"${focus}\" "
    fi
    
    if [[ ${skip} != "" ]]; then
      ginkgoflags="${ginkgoflags} -skip=\"${skip}\" "
    fi
    
    if [[ ${run_until_failure} == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      initConfigManager();
    
      search.addEventListener('input', handleSearch);
      search.addEventListener('keydown', handleKey);
    
      // Give initial focus to main container so it can be scrolled using keys.
      const main = document.getElementById('bodycontainer');
      if (main) {
        main.focus();
      }
    }
    
    // convert a string to a regexp that matches exactly that string.
    function pprofQuoteMeta(str) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/dependencies/sub-dependencies.md

        {!> ../../../docs_src/dependencies/tutorial005.py!}
        ```
    
    It declares an optional query parameter `q` as a `str`, and then it just returns it.
    
    This is quite simple (not very useful), but will help us focus on how the sub-dependencies work.
    
    ## Second dependency, "dependable" and "dependant"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    		return nil, fmt.Errorf("zero divisor specified")
    	}
    
    	var filters []string
    	addFilter := func(k string, v string) {
    		if v != "" {
    			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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	NodeCount    int     `json:"nodecount,omitempty"`
    	NodeFraction float64 `json:"nodefraction,omitempty"`
    	EdgeFraction float64 `json:"edgefraction,omitempty"`
    	Trim         bool    `json:"trim,omitempty"`
    	Focus        string  `json:"focus,omitempty"`
    	Ignore       string  `json:"ignore,omitempty"`
    	PruneFrom    string  `json:"prune_from,omitempty"`
    	Hide         string  `json:"hide,omitempty"`
    	Show         string  `json:"show,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)
Back to top