Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 861 - 870 of 1,005 for trip (0.04 seconds)

  1. docs/uk/docs/tutorial/handling-errors.md

    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip | Порада
    
    Під час генерації `HTTPException` ви можете передати будь-яке значення, яке може бути перетворене в JSON, як параметр `detail`, а не лише `str`.
    
    Ви можете передати `dict`, `list` тощо.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  2. docs/uk/docs/tutorial/security/first-steps.md

    {* ../../docs_src/security/tutorial001_an_py310.py hl[8] *}
    
    /// tip | Порада
    
    Тут `tokenUrl="token"` відноситься до відносної URL-адреси `token`, яку ми ще не створили. Оскільки це відносна URL-адреса, вона еквівалентна `./token`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/handling-errors.md

    Ancak client `http://example.com/items/bar` (mevcut olmayan bir `item_id` `"bar"`) isterse, HTTP status code olarak 404 ("not found" hatası) ve şu JSON response’u alır:
    
    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip | İpucu
    
    Bir `HTTPException` raise ederken, `detail` parametresine sadece `str` değil, JSON’a dönüştürülebilen herhangi bir değer geçebilirsiniz.
    
    Örneğin `dict`, `list` vb. geçebilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

            final List<String> list = new ArrayList<>(values.length);
            for (final String line : values) {
                if (StringUtil.isNotBlank(line)) {
                    list.add(line.trim());
                }
            }
            return list.toArray(new String[list.size()]);
        }
    
        // ===================================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/tutorial/body.md

    前面的螢幕截圖是使用 [Visual Studio Code](https://code.visualstudio.com) 拍的。
    
    但你在 [PyCharm](https://www.jetbrains.com/pycharm/) 與大多數其它 Python 編輯器中也會得到相同的編輯器支援:
    
    <img src="/img/tutorial/body/image05.png">
    
    /// tip
    
    如果你使用 [PyCharm](https://www.jetbrains.com/pycharm/) 作為編輯器,可以安裝 [Pydantic PyCharm Plugin](https://github.com/koxudaxi/pydantic-pycharm-plugin/)。
    
    它能增強 Pydantic 模型的編輯器支援,包含:
    
    - 自動完成
    - 型別檢查
    - 重構
    - 搜尋
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6K bytes
    - Click Count (0)
  6. docs/zh/docs/tutorial/request-files.md

    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[9] *}
    
    /// info | 信息
    
    `File` 是直接继承自 `Form` 的类。
    
    但要注意,从 `fastapi` 导入的 `Query`、`Path`、`File` 等项,实际上是返回特定类的函数。
    
    ///
    
    /// tip | 提示
    
    声明文件体必须使用 `File`,否则,这些参数会被当作查询参数或请求体(JSON)参数。
    
    ///
    
    文件将作为「表单数据」上传。
    
    如果把*路径操作函数*参数的类型声明为 `bytes`,**FastAPI** 会为你读取文件,并以 `bytes` 的形式接收其内容。
    
    请注意,这意味着整个内容会存储在内存中,适用于小型文件。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                final int[] tmp = new int[3];
                final StringTokenizer st = new StringTokenizer(RO, ",");
                int i = 0;
                while (st.hasMoreTokens()) {
                    final String s = st.nextToken().trim();
                    if (s.equalsIgnoreCase("LMHOSTS")) {
                        tmp[i] = RESOLVER_LMHOSTS;
                        i++;
                    } else if (s.equalsIgnoreCase("WINS")) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 17.6K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/security/first-steps.md

    {* ../../docs_src/security/tutorial001_an_py310.py hl[8] *}
    
    /// tip | Tipp
    
    Hier bezieht sich `tokenUrl="token"` auf eine relative URL `token`, die wir noch nicht erstellt haben. Da es sich um eine relative URL handelt, entspricht sie `./token`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  9. docs/fr/docs/tutorial/handling-errors.md

    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip | Astuce
    
    Lorsque vous levez une `HTTPException`, vous pouvez passer n'importe quelle valeur convertible en JSON comme paramètre `detail`, pas uniquement un `str`.
    
    Vous pouvez passer un `dict`, une `list`, etc.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10K bytes
    - Click Count (0)
  10. docs/en/docs/fastapi-people.md

    These are the users that have been [helping others the most with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github). 🙇
    
    They have proven to be **FastAPI Experts** by helping many others. ✨
    
    /// tip
    
    You could become an official FastAPI Expert too!
    
    Just [help others with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github). 🤓
    
    ///
    
    You can see the **FastAPI Experts** for:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9K bytes
    - Click Count (0)
Back to Top