Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 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/profile/filter.go

    // samples where at least one frame matches focus but none match ignore.
    // Returns true is the corresponding regexp matched at least one sample.
    func (p *Profile) FilterSamplesByName(focus, ignore, hide, show *regexp.Regexp) (fm, im, hm, hnm bool) {
    	if focus == nil && ignore == nil && hide == nil && show == nil {
    		fm = true // Missing focus implies a match
    		return
    	}
    	focusOrIgnore := make(map[uint64]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    				continue
    			}
    			ignore = catRegex(ignore, t[1:])
    		default:
    			focus = catRegex(focus, t)
    		}
    	}
    
    	if name == "tags" {
    		if focus != "" {
    			vcopy.TagFocus = focus
    		}
    		if ignore != "" {
    			vcopy.TagIgnore = ignore
    		}
    	} else {
    		if focus != "" {
    			vcopy.Focus = focus
    		}
    		if ignore != "" {
    			vcopy.Ignore = ignore
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    //	NewRootObjectFunc().Index().Child("foo").Child("bar").Index(), then acc([{"foo": {"bar":[x]}}]) == x
    type SurroundingObjectFunc func(focus interface{}) (map[string]interface{}, AccessorFunc, error)
    
    // NewRootObjectFunc returns the identity function. The passed focus value
    // must be an object.
    func NewRootObjectFunc() SurroundingObjectFunc {
    	return func(x interface{}) (map[string]interface{}, AccessorFunc, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/main/webapp/js/index.js

    $(function() {
      $("#contentQuery").focus();
    
      var $searchButton = $("#searchButton"),
          contextPath = $("#contextPath").val();
    
      $("#searchForm").on("submit", function(e) {
        $searchButton.attr("disabled", true);
        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
      $(document).on("click touchend", function(e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top