Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 226 for click (0.11 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            allScenarioButtonClicked()
        } else if ($('#failed-scenarios').length > 0) {
            failedScenarioButtonClicked()
        }
    
        $('#failed-scenarios').click(failedScenarioButtonClicked);
    
        $('#all-scenarios').click(allScenarioButtonClicked);
    }
    
    
    $(function () {
        enableTooltips();
        enableSectionSign();
        enableFilter();
        initTabs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/index.html

            </h3>
            {% autoescape false %}
            {{ serviceTable }}
            {% endautoescape %}
            <p>
                Click on one of the links below to auto generate a request to the backend as a real user or a tester
            </p>
            <ul>
                <li>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    https://gradle.com/s/e6ircx2wjbf7e
    ----
    
    This section explains how to profile your build with build scans.
    
    == Profile with build scans
    
    The performance page can help use build scans to profile a build.
    To get there, click _"Performance"_ in the left hand navigation menu
    or follow the "Explore performance" link on the build scan home page:
    
    image::performance/build-scan-home.png[title="Performance page link on build scan home page"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/first-steps.md

    <img src="/img/tutorial/security/image01.png">
    
    !!! check "Authorize button!"
        You already have a shiny new "Authorize" button.
    
        And your *path operation* has a little lock in the top-right corner that you can click.
    
    And if you click it, you have a little authorization form to type a `username` and `password` (and other optional fields):
    
    <img src="/img/tutorial/security/image02.png">
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      document.addEventListener('mousedown', (e) => {
        if (!actions.contains(e.target)) {
          hideActionMenu();
        }
      });
      actions.addEventListener('click', hideActionMenu);
    
      // Initialize menus and other general UI elements.
      viewer(new URL(window.location.href), nodes, {
        hiliter: (n, on) => { return hilite(n, on); },
        current: () => {
          let r = new Map();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/templates/productpage.html

        const closeButton = document.querySelector("#close-dialog");
    
        if (showButton) {
          showButton.addEventListener("click", () => {
            dialog.showModal();
          });
        }
    
        if (closeButton) {
          closeButton.addEventListener("click", () => {
            dialog.close();
          });
        }
      })
    </script>
    {% endblock %}
    {% block content %}
    
    <nav class="bg-gray-800">
    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. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                options.addBooleanOption("html5", true);
    
                // TODO: This would be better to model as separate options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/simple-oauth2.md

    ## See it in action
    
    Open the interactive docs: <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    ### Authenticate
    
    Click the "Authorize" button.
    
    Use the credentials:
    
    User: `johndoe`
    
    Password: `secret`
    
    <img src="/img/tutorial/security/image04.png">
    
    After authenticating in the system, you will see it like:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/main/resources/footer.html

        // Expand/contract multi-level side navigation
        [].forEach.call(document.querySelectorAll(".docs-navigation .nav-dropdown"), function registerSideNavActions(collapsibleElement) {
            collapsibleElement.addEventListener("click", function toggleExpandedSideNav(evt) {
                evt.preventDefault();
                evt.target.classList.toggle("expanded");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    image::tutorial/intellij-idea-tasks.png[]
    
    == Step 5. Running Tasks in the IDE
    You can run a Gradle task via IntelliJ by double-clicking that task in the pane.
    
    Double-click **tutorial > app > build > build**.
    
    image::tutorial/intellij-idea-build.png[]
    
    Once the build finishes, make sure it is successful in the IntelliJ console:
    [source,text]
    ----
    BUILD SUCCESSFUL in 966ms
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top