Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 442 for DETAIL (0.27 seconds)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java

         *
         * <p>Implementations should handle any task-specific logic and may communicate
         * errors by throwing an {@link Exception}. Error conditions should provide
         * sufficient detail to aid troubleshooting.</p>
         *
         * @throws Exception if any issue occurs that prevents the successful execution
         *                   of the Mojo
         */
        void execute() throws Exception;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jan 29 08:21:00 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/tutorial/cookie-param-models.md

    例如,若客戶端嘗試送出名為 `santa_tracker`、值為 `good-list-please` 的 Cookie,客戶端會收到**錯誤**回應,告知 `santa_tracker` 這個 <dfn title="聖誕老人不贊同沒有餅乾。🎅 好的,不再講餅乾笑話了。">Cookie 不被允許</dfn>:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
                "loc": ["cookie", "santa_tracker"],
                "msg": "Extra inputs are not permitted",
                "input": "good-list-please",
            }
        ]
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/ListenableFutureTask.java

        }
        // Waiting 68 years should be enough for any program.
        return super.get(
            min(timeoutNanos, OverflowAvoidingLockSupport.MAX_NANOSECONDS_THRESHOLD), NANOSECONDS);
      }
    
      /** Internal implementation detail used to invoke the listeners. */
      @Override
      protected void done() {
        executionList.execute();
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Feb 10 11:51:21 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/tutorial/security/simple-oauth2.md

    如果你點擊鎖頭圖示登出,然後再次嘗試相同操作,你會得到 HTTP 401 錯誤:
    
    ```JSON
    {
      "detail": "Not authenticated"
    }
    ```
    
    ### 未啟用的使用者 { #inactive-user }
    
    現在改用一個未啟用的使用者,使用以下帳密驗證:
    
    User: `alice`
    
    Password: `secret2`
    
    然後再呼叫 `GET` 方法的 `/users/me`。
    
    你會得到「Inactive user」的錯誤,例如:
    
    ```JSON
    {
      "detail": "Inactive user"
    }
    ```
    
    ## 小結 { #recap }
    
    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)
  5. docs/zh-hant/docs/advanced/async-tests.md

    {* ../../docs_src/async_tests/app_a_py310/test_main.py *}
    
    ## 執行 { #run-it }
    
    如常執行測試:
    
    <div class="termy">
    
    ```console
    $ pytest
    
    ---> 100%
    ```
    
    </div>
    
    ## 詳解 { #in-detail }
    
    標記 `@pytest.mark.anyio` 告訴 pytest 這個測試函式應以非同步方式執行:
    
    {* ../../docs_src/async_tests/app_a_py310/test_main.py hl[7] *}
    
    /// tip
    
    注意,測試函式現在是 `async def`,而不是像使用 `TestClient` 時那樣僅用 `def`。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

            return asHtml(path_AdminSearchlog_AdminSearchlogJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Returns to the search log list from a detail view.
         *
         * @param form the search form containing current state
         * @return HTML response for the search log list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/tutorial/header-param-models.md

    {* ../../docs_src/header_param_models/tutorial002_an_py310.py hl[10] *}
    
    如果用戶端嘗試傳送額外的標頭,會收到錯誤回應。
    
    例如,用戶端若傳送名為 `tool`、值為 `plumbus` 的標頭,會收到錯誤回應,指出不允許標頭參數 `tool`:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
                "loc": ["header", "tool"],
                "msg": "Extra inputs are not permitted",
                "input": "plumbus",
            }
        ]
    }
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  8. docs/ko/docs/tutorial/cookie-param-models.md

    예를 들어, 클라이언트가 `good-list-please` 값으로 `santa_tracker` 쿠키를 보내려고 하면 클라이언트는 `santa_tracker` <dfn title="산타는 쿠키가 부족한 것을 못마땅해합니다. 🎅 좋아요, 이제 더 이상 쿠키 농담은 하지 않겠습니다.">쿠키가 허용되지 않는다</dfn>는 **오류** 응답을 받게 됩니다:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
                "loc": ["cookie", "santa_tracker"],
                "msg": "Extra inputs are not permitted",
                "input": "good-list-please",
            }
        ]
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:57:01 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  9. docs/zh/docs/how-to/conditional-openapi.md

    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    然后如果你访问 `/openapi.json`、`/docs` 或 `/redoc`,就会得到一个 `404 Not Found` 错误,例如:
    
    ```JSON
    {
        "detail": "Not Found"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  10. docs/multi-user/admin/README.md

    ## Get started
    
    In this document we will explain in detail on how to configure admin users.
    
    ### 1. Prerequisites
    
    - Install mc - [MinIO Client Quickstart Guide](https://docs.min.io/community/minio-object-store/reference/minio-mc.html#quickstart)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 4.7K bytes
    - Click Count (0)
Back to Top