Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1311 - 1320 of 2,110 for py$ (0.07 seconds)

  1. src/test/java/org/codelibs/fess/job/PythonJobTest.java

        }
    
        // Test filename setter
        @Test
        public void test_filename() {
            assertNull(pythonJob.filename);
    
            PythonJob result = pythonJob.filename("test.py");
    
            assertSame(pythonJob, result);
            assertEquals("test.py", pythonJob.filename);
        }
    
        // Test single argument addition
        @Test
        public void test_arg() {
            assertTrue(pythonJob.argList.isEmpty());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/debugging.md

    FastAPI uygulamanızda `uvicorn`'ı import edip doğrudan çalıştırın:
    
    {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *}
    
    ### `__name__ == "__main__"` Hakkında { #about-name-main }
    
    `__name__ == "__main__"` ifadesinin temel amacı, dosyanız şu şekilde çağrıldığında çalışacak:
    
    <div class="termy">
    
    ```console
    $ python myapp.py
    ```
    
    </div>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/query-params-str-validations.md

    ///
    
    Vous pouvez ajouter un `title` :
    
    {* ../../docs_src/query_params_str_validations/tutorial007_an_py310.py hl[10] *}
    
    Et une `description` :
    
    {* ../../docs_src/query_params_str_validations/tutorial008_an_py310.py hl[14] *}
    
    ## Paramètres avec alias { #alias-parameters }
    
    Imaginez que vous vouliez que le paramètre soit `item-query`.
    
    Comme dans :
    
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 19K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/query-params-str-validations.md

    ## Agregar expresiones regulares { #add-regular-expressions }
    
    Puedes definir una <dfn title="Una expresión regular, regex o regexp es una secuencia de caracteres que define un patrón de búsqueda para strings.">expresión regular</dfn> `pattern` que el parámetro debe coincidir:
    
    {* ../../docs_src/query_params_str_validations/tutorial004_an_py310.py hl[11] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  5. docs/tr/docs/advanced/path-operation-advanced-configuration.md

    Bunun her operation için benzersiz olduğundan emin olmanız gerekir.
    
    {* ../../docs_src/path_operation_advanced_configuration/tutorial001_py310.py hl[6] *}
    
    ### operationId olarak *path operation function* adını kullanma { #using-the-path-operation-function-name-as-the-operationid }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  6. docs/uk/docs/tutorial/debugging.md

    {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *}
    
    ### Про `__name__ == "__main__"` { #about-name-main }
    
    Головна мета використання `__name__ == "__main__"` — це забезпечення виконання певного коду лише тоді, коли ваш файл запускається так:
    
    <div class="termy">
    
    ```console
    $ python myapp.py
    ```
    
    </div>
    
    але не виконується, коли інший файл імпортує його, наприклад:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  7. docs/zh/docs/tutorial/path-operation-configuration.md

    OpenAPI 概图会自动添加标签,供 API 文档接口使用:
    
    <img src="/img/tutorial/path-operation-configuration/image01.png">
    
    ### 使用 Enum 的标签 { #tags-with-enums }
    
    如果你的应用很大,可能会积累出很多标签,你会希望确保相关的*路径操作*始终使用相同的标签。
    
    这种情况下,把标签存放在 `Enum` 中会更合适。
    
    **FastAPI** 对此的支持与使用普通字符串相同:
    
    {* ../../docs_src/path_operation_configuration/tutorial002b_py310.py hl[1,8:10,13,18] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  8. docs/pt/docs/advanced/custom-response.md

    {* ../../docs_src/response_model/tutorial001_01_py310.py ln[15:17] hl[16] *}
    
    ## Resposta HTML { #html-response }
    
    Para retornar uma resposta com HTML diretamente do **FastAPI**, utilize `HTMLResponse`.
    
    * Importe `HTMLResponse`.
    * Passe `HTMLResponse` como o parâmetro de `response_class` do seu *decorador de operação de rota*.
    
    {* ../../docs_src/custom_response/tutorial002_py310.py hl[2,7] *}
    
    /// info | Informação
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 12K bytes
    - Click Count (0)
  9. docs/ru/docs/advanced/settings.md

    Например, у вас может быть файл `config.py` со следующим содержимым:
    
    {* ../../docs_src/settings/app01_py310/config.py *}
    
    А затем использовать его в файле `main.py`:
    
    {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *}
    
    /// tip | Совет
    
    Вам также понадобится файл `__init__.py`, как в разделе [Большие приложения — несколько файлов](../tutorial/bigger-applications.md).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  10. docs/de/docs/tutorial/response-model.md

    {* ../../docs_src/response_model/tutorial003_py310.py hl[9,11,16] *}
    
    Obwohl unsere *Pfadoperation-Funktion* hier denselben `user` von der Eingabe zurückgibt, der das Passwort enthält:
    
    {* ../../docs_src/response_model/tutorial003_py310.py hl[24] *}
    
    ... haben wir deklariert, dass `response_model` das Modell `UserOut` ist, welches das Passwort nicht enthält:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 17.5K bytes
    - Click Count (0)
Back to Top