Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 1,147 for type2 (0.03 seconds)

  1. docs/ko/docs/python-types.md

    <img src="/img/python-types/image02.png">
    
    그러면 스크롤하며 옵션을 보다가, "기억나는" 것을 찾을 수 있습니다:
    
    <img src="/img/python-types/image03.png">
    
    ## 더 큰 동기부여 { #more-motivation }
    
    이 함수를 확인해보세요. 이미 타입 힌트가 있습니다:
    
    {* ../../docs_src/python_types/tutorial003_py310.py hl[1] *}
    
    에디터가 변수의 타입을 알고 있기 때문에, 자동완성만 되는 게 아니라 오류 검사도 할 수 있습니다:
    
    <img src="/img/python-types/image04.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 13K bytes
    - Click Count (0)
  2. docs/ja/docs/python-types.md

    <img src="/img/python-types/image02.png">
    
    これであれば、あなたは「ベルを鳴らす」ものを見つけるまで、オプションを見てスクロールできます:
    
    <img src="/img/python-types/image03.png">
    
    ## より強い動機 { #more-motivation }
    
    この関数を見てください。すでに型ヒントを持っています:
    
    {* ../../docs_src/python_types/tutorial003_py310.py hl[1] *}
    
    エディタは変数の型を知っているので、補完だけでなく、エラーチェックをすることもできます:
    
    <img src="/img/python-types/image04.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  3. docs/tr/docs/python-types.md

    # Python Tiplerine Giriş { #python-types-intro }
    
    Python, isteğe bağlı "type hints" (diğer adıyla "type annotations") desteğine sahiptir.
    
    Bu **"type hints"** veya annotations, bir değişkenin <dfn title="örneğin: str, int, float, bool">tip</dfn>'ini bildirmeye yarayan özel bir sözdizimidir.
    
    Değişkenleriniz için tip bildirerek, editörler ve araçlar size daha iyi destek sağlayabilir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  4. docs/uk/docs/python-types.md

    Ви надрукуєте перший параметр функції, `first_name`, тоді крапку (`.`), а тоді натиснете `Ctrl+Space`, щоб запустити автозаповнення.
    
    Але, на жаль, ви не отримаєте нічого корисного:
    
    <img src="/img/python-types/image01.png">
    
    ### Додайте типи { #add-types }
    
    Давайте змінимо один рядок з попередньої версії.
    
    Ми змінимо саме цей фрагмент, параметри функції, з:
    
    ```Python
        first_name, last_name
    ```
    
    на:
    
    ```Python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  5. docs/zh/docs/python-types.md

    在同样的位置,你用 `Ctrl+Space` 触发自动补全,就能看到:
    
    <img src="/img/python-types/image02.png">
    
    这样,你可以滚动查看选项,直到找到那个“看着眼熟”的:
    
    <img src="/img/python-types/image03.png">
    
    ## 更多动机 { #more-motivation }
    
    看这个已经带有类型提示的函数:
    
    {* ../../docs_src/python_types/tutorial003_py310.py hl[1] *}
    
    因为编辑器知道变量的类型,你不仅能得到补全,还能获得错误检查:
    
    <img src="/img/python-types/image04.png">
    
    现在你知道需要修复它,用 `str(age)` 把 `age` 转成字符串:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  6. docs/de/docs/tutorial/query-params.md

    ///
    
    ## Query-Parameter Typkonvertierung { #query-parameter-type-conversion }
    
    Sie können auch `bool`-Typen deklarieren, und sie werden konvertiert:
    
    {* ../../docs_src/query_params/tutorial003_py310.py hl[7] *}
    
    Wenn Sie nun zu:
    
    ```
    http://127.0.0.1:8000/items/foo?short=1
    ```
    
    oder
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/RestIntegTestTask.java

     * Side Public License, v 1.
     */
    
    package org.elasticsearch.gradle.internal.test;
    
    import org.elasticsearch.gradle.testclusters.StandaloneRestIntegTestTask;
    import org.gradle.api.tasks.CacheableTask;
    
    /**
     * Sub typed version of {@link StandaloneRestIntegTestTask}  that is used to differentiate between plain standalone
     * integ test tasks based on {@link StandaloneRestIntegTestTask} and
     * conventional configured tasks of {@link RestIntegTestTask}
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 862 bytes
    - Click Count (0)
  8. scripts/tests/test_translation_fixer/test_complex_doc/test_compex_doc.py

    from pathlib import Path
    
    import pytest
    from typer.testing import CliRunner
    
    from scripts.translation_fixer import cli
    
    data_path = Path(
        "scripts/tests/test_translation_fixer/test_complex_doc/data"
    ).absolute()
    
    
    @pytest.mark.parametrize(
        "copy_test_files",
        [(f"{data_path}/en_doc.md", f"{data_path}/translated_doc.md")],
        indirect=True,
    )
    def test_fix(runner: CliRunner, root_dir: Path, copy_test_files):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 902 bytes
    - Click Count (0)
  9. docs/es/docs/advanced/strict-content-type.md

    # Chequeo estricto de Content-Type { #strict-content-type-checking }
    
    Por defecto, **FastAPI** usa un chequeo estricto del header `Content-Type` para request bodies JSON, esto significa que las requests JSON deben incluir un header `Content-Type` válido (p. ej. `application/json`) para que el request body se parse como JSON.
    
    ## Riesgo de CSRF { #csrf-risk }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  10. docs/ru/docs/advanced/strict-content-type.md

    # Строгая проверка HTTP-заголовка Content-Type { #strict-content-type-checking }
    
    По умолчанию **FastAPI** использует строгую проверку HTTP-заголовка `Content-Type` для JSON-тел запросов. Это означает, что JSON-запросы должны включать корректный заголовок `Content-Type` (например, `application/json`), чтобы тело запроса было обработано как JSON.
    
    ## Риск CSRF { #csrf-risk }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 5.6K bytes
    - Click Count (0)
Back to Top