Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. hack/e2e-node-test.sh

    # For help output
    ARGHELP=""
    if [[ -n "${FOCUS:-}" ]]; then
        ARGHELP="FOCUS='${FOCUS}' "
    fi
    if [[ -n "${SKIP:-}" ]]; then
        ARGHELP="${ARGHELP}SKIP='${SKIP}'"
    fi
    
    echo "NOTE: $0 has been replaced by 'make test-e2e-node'"
    echo
    echo "This script supports a number of parameters passed as environment variables."
    echo "Please see the Makefile for more details."
    echo
    echo "The equivalent of this invocation is: "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    )
    
    var tagFilterRangeRx = regexp.MustCompile("([+-]?[[:digit:]]+)([[:alpha:]]+)?")
    
    // applyFocus filters samples based on the focus/ignore options
    func applyFocus(prof *profile.Profile, numLabelUnits map[string]string, cfg config, ui plugin.UI) error {
    	focus, err := compileRegexOption("focus", cfg.Focus, nil)
    	ignore, err := compileRegexOption("ignore", cfg.Ignore, err)
    	hide, err := compileRegexOption("hide", cfg.Hide, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  9. src/main/webapp/js/profile.js

    $(function() {
      $('input[type="text"],select,textarea', ".login-box,section.content")
        .first()
        .focus();
      $(".form-group .has-error")
        .first()
        .next("input,select,textarea")
        .focus();
    
      $("section.content input").keypress(function(e) {
        var $submitButton;
        if (e.which === 13) {
          $submitButton = $("input#submit, button#submit");
          if ($submitButton.length > 0) {
            $submitButton[0].submit();
          }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Sep 12 06:47:49 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. misc/chrome/gophertool/popup.js

    window.addEventListener("load", function () {
      addLinks();
      console.log("hacking gopher pop-up loaded.");
      document.getElementById("inputbox").focus();
    });
    
    window.addEventListener("submit", function () {
      console.log("submitting form");
      var box = document.getElementById("inputbox");
      box.focus();
    
      var t = box.value;
      if (t == "") {
        return false;
      }
    
      var success = function(url) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 21 17:05:21 UTC 2012
    - 1020 bytes
    - Viewed (0)
Back to top