Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 767 for Img (0.19 seconds)

  1. docs/en/docs/tutorial/security/simple-oauth2.md

    ### Authenticate { #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:
    
    <img src="/img/tutorial/security/image05.png">
    
    ### Get your own user data { #get-your-own-user-data }
    
    Now use the operation `GET` with the path `/users/me`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                });
                task.from(extension.getCssFiles(), sub -> sub.into("css"));
                task.from(extension.getUserManual().getRoot().dir("img"), sub -> {
                    sub.include("**/*.png", "**/*.gif", "**/*.jpg", "**/*.svg");
                    sub.into("img");
                });
                task.from(extension.getUserManual().getResources());
    
                task.from(generateDocinfo);
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 22:33:18 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/tutorial/metadata.md

    你可以這樣設定它們:
    
    {* ../../docs_src/metadata/tutorial001_py310.py hl[3:16, 19:32] *}
    
    /// tip | 提示
    
    你可以在 `description` 欄位中撰寫 Markdown,輸出時會被正確渲染。
    
    ///
    
    使用這些設定後,自動產生的 API 文件會像這樣:
    
    <img src="/img/tutorial/metadata/image01.png">
    
    ## 授權識別碼 { #license-identifier }
    
    自 OpenAPI 3.1.0 與 FastAPI 0.99.0 起,你也可以在 `license_info` 中使用 `identifier` 來取代 `url`。
    
    例如:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            data = "<img src=\"http://example/foo.jpg\">" //
                    + "<img src=\"http://example/bar.jpg\" width=\"100\" height=\"100\">";
            expected = "http://example/bar.jpg";
            assertGetThumbnailUrl(data, expected);
    
            data = "<img src=\"http://example/foo.jpg\" width=\"100\" height=\"100\">";
            expected = "http://example/foo.jpg";
            assertGetThumbnailUrl(data, expected);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  5. docs/zh/docs/tutorial/path-params.md

    **FastAPI** 使用同样的 Python 类型声明实现了数据校验。
    
    注意,上面的错误清晰地指出了未通过校验的具体位置。
    
    这在开发调试与 API 交互的代码时非常有用。
    
    ///
    
    ## 文档 { #documentation }
    
    访问 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs),查看自动生成的交互式 API 文档:
    
    <img src="/img/tutorial/path-params/image01.png">
    
    /// check | 检查
    
    还是使用 Python 类型声明,**FastAPI** 提供了(集成 Swagger UI 的)自动交互式文档。
    
    注意,路径参数的类型是整数。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/path-params.md

    注意錯誤也清楚指出驗證未通過的確切位置。
    
    這在開發與除錯與你的 API 互動的程式碼時非常有幫助。
    
    ///
    
    ## 文件 { #documentation }
    
    當你在瀏覽器開啟 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs),你會看到自動產生、可互動的 API 文件,例如:
    
    <img src="/img/tutorial/path-params/image01.png">
    
    /// check
    
    同樣地,只要使用那個 Python 型別宣告,**FastAPI** 就會提供自動、互動式的文件(整合 Swagger UI)。
    
    注意路徑參數被宣告為整數。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  7. docs/en/docs/tutorial/request-form-models.md

    ## Check the Docs { #check-the-docs }
    
    You can verify it in the docs UI at `/docs`:
    
    <div class="screenshot">
    <img src="/img/tutorial/request-form-models/image01.png">
    </div>
    
    ## Forbid Extra Form Fields { #forbid-extra-form-fields }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/security/first-steps.md

    ## 檢查 { #check-it }
    
    開啟互動式文件:[http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)。
    
    你會看到類似這樣:
    
    <img src="/img/tutorial/security/image01.png">
    
    /// check | Authorize 按鈕!
    
    你會看到一個新的「Authorize」按鈕。
    
    而你的「路徑操作」右上角也會出現一個小鎖頭可以點擊。
    
    ///
    
    點擊後會跳出一個小視窗,讓你輸入 `username` 與 `password`(以及其他可選欄位):
    
    <img src="/img/tutorial/security/image02.png">
    
    /// note | 注意
    
    不管你在表單輸入什麼,現在都還不會成功;等等我們會把它完成。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/security/first-steps.md

    ## 查看 { #check-it }
    
    打开交互式文档:[http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)。
    
    你会看到类似这样的界面:
    
    <img src="/img/tutorial/security/image01.png">
    
    /// check | Authorize 按钮!
    
    页面右上角已经有一个崭新的“Authorize”按钮。
    
    你的*路径操作*右上角还有一个可点击的小锁图标。
    
    ///
    
    点击它,会弹出一个授权表单,可输入 `username` 和 `password`(以及其它可选字段):
    
    <img src="/img/tutorial/security/image02.png">
    
    /// note | 注意
    
    目前无论在表单中输入什么都不会生效,我们稍后就会实现它。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/security/simple-oauth2.md

    ### 驗證身分 { #authenticate }
    
    點選「Authorize」按鈕。
    
    使用下列帳密:
    
    User: `johndoe`
    
    Password: `secret`
    
    <img src="/img/tutorial/security/image04.png">
    
    在系統中完成驗證後,你會看到如下畫面:
    
    <img src="/img/tutorial/security/image05.png">
    
    ### 取得自己的使用者資料 { #get-your-own-user-data }
    
    現在使用 `GET` 方法呼叫路徑 `/users/me`。
    
    你會取得自己的使用者資料,如:
    
    ```JSON
    {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 9.1K bytes
    - Click Count (0)
Back to Top