Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 133 for Focus (0.04 sec)

  1. src/main/webapp/js/login.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)
  2. 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)
  3. 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)
  4. src/main/webapp/js/admin/admin.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) {
        if (e.which === 13) {
          var $submitButton = $("input#submit, button#submit");
          if ($submitButton.size() > 0) {
            $submitButton[0].submit();
          }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 06 20:44:47 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  5. 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)
  6. ISSUES.md

        a documentation issue (for small doc fixes please send a PR instead).
    1.  Make sure the Issue Template is filled out.
    1.  The issue should be related to the repo it is created in.
    
    **Here's why we have this policy:** We want to focus on the work that benefits
    the whole community, e.g., fixing bugs and adding features. Individual support
    should be sought on Stack Overflow or other non-GitHub channels. It helps us to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 11 22:37:27 UTC 2021
    - 606 bytes
    - Viewed (0)
  7. subprojects/distributions-full/src/toplevel/README

    Gradle is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 15 06:58:16 UTC 2020
    - 976 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top