Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 254 for click (0.04 sec)

  1. docs/sts/keycloak.md

    ### Configure Keycloak Realm
    
    - Go to Clients
      - Click on account
        - Settings
        - Change `Access Type` to `confidential`.
        - Save
      - Click on credentials tab
        - Copy the `Secret` to clipboard.
        - This value is needed for `MINIO_IDENTITY_OPENID_CLIENT_SECRET` for MinIO.
    
    - Go to Users
      - Click on the user
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. scripts/playwright/separate_openapi_schemas/image01.py

        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_text("POST/items/Create Item").click()
        page.get_by_role("tab", name="Schema").first.click()
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image01.png"
        )
    
        # ---------------------
        context.close()
        browser.close()
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 819 bytes
    - Viewed (0)
  3. scripts/playwright/separate_openapi_schemas/image04.py

        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_role("button", name="Item-Input").click()
        page.get_by_role("button", name="Item-Output").click()
        page.set_viewport_size({"width": 960, "height": 820})
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image04.png"
        )
        # ---------------------
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 881 bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

        $("#generationDate").text(report.generationDate);
    }
    
    function initializeProjectPage(report) {
        $(document).ready(function() {
            // event handling to close the insight div
            $('#insight').on('click', '#dismissInsight', function(event) {
                $('#insight').fadeOut();
                event.preventDefault();
            });
    
            // creates a node of a dependency tree
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  5. security/tools/jwt/README.md

        - In the [Service Accounts page](https://console.cloud.google.com/iam-admin/serviceaccounts),
        click CREATE SERVICE ACCOUNT, or select one of the existing service accounts.
    
        - Click "Create Key" from the drop-down menu, and select the default JSON key type. The key file
        will automatically downloads to your computer.
    
    ## Usage
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    .separator {
      position: absolute;
      text-align: center;
      font-size: 12pt;
      font-weight: bold;
    }
    /* Ensure that pprof menu is above boxes */
    .submenu { z-index: 3; }
    /* Right-click menu */
    #action-menu {
      max-width: 15em;
    }
    /* Right-click menu title */
    #action-title {
      display: block;
      padding: 0.5em 1em;
      background: #888;
      text-overflow: ellipsis;
      overflow: hidden;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    Select the automatically Gradle build step and click _Use selected_:
    
    image::ci-systems/teamcity-build-step.png[]
    
    The build step is added to the build configuration:
    
    image::ci-systems/teamcity-step-added.png[]
    
    Click _Edit_, on the page that opens click _Advanced options_.
    Using the Wrapper to execute the build is considered good practice with Gradle,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. docs/sts/dex.md

            "arn:aws:s3:::*"
          ]
        }
      ]
    }
    ```
    
    ### Visit <http://localhost:8080>
    
    You will be redirected to dex login screen - click "Login with email", enter username password
    > username: ******@****.***
    > password: password
    
    and then click "Grant access"
    
    On the browser now you shall see the list of buckets output, along with your temporary credentials obtained from MinIO.
    
    ```
    {
     "buckets": [
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. scripts/playwright/separate_openapi_schemas/image05.py

        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_role("button", name="Item", exact=True).click()
        page.set_viewport_size({"width": 960, "height": 700})
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image05.png"
        )
    
        # ---------------------
        context.close()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 829 bytes
    - Viewed (0)
  10. misc/chrome/gophertool/README.txt

    To install:
    
    1) chrome://extensions/
    2) click "[+] Developer Mode" in top right
    3) "Load unpacked extension..."
    4) pick $GOROOT/misc/chrome/gophertool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:27:51 UTC 2011
    - 194 bytes
    - Viewed (0)
Back to top