Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for _data (0.03 sec)

  1. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/extra-data-types.md

    Alejandra <******@****.***> 1711071731 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/extra-data-types.md

    * `Decimal`:
        * Pythonの標準的な`Decimal`です。
        * リクエストやレスポンスでは`float`と同じように扱います。
    
    * Pydanticの全ての有効な型はこちらで確認できます: <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic data types</a>。
    ## 例
    
    ここでは、上記の型のいくつかを使用したパラメータを持つ*path operation*の例を示します。
    
    ```Python hl_lines="1 2 12-16"
    {!../../../docs_src/extra_data_types/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/extra-data-types.md

    Nayeon Kim <******@****.***> 1718333110 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 02:45:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. build-logic/lifecycle/src/main/kotlin/gradlebuild.teamcity-import-test-data.gradle.kts

    import org.gradle.tooling.events.task.TaskSuccessResult
    
    /**
     * This is a workaround for https://youtrack.jetbrains.com/issue/TW-76894.
     *
     * In short, we want TeamCity to be aware of the test execution data (which tests are executed and how long they are),
     * even when the Test task is `FROM-CACHE` or `UP-TO-DATE`. This build service will output a service message to instruct TeamCity to read JUnit test result XMLs.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 09:11:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/extra-data-types.md

    # Extra Data Types
    
    Up to now, you have been using common data types, like:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    But you can also use more complex data types.
    
    And you will still have the same features as seen up to now:
    
    * Great editor support.
    * Data conversion from incoming requests.
    * Data conversion for response data.
    * Data validation.
    * Automatic annotation and documentation.
    
    ## Other data types
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. docs/uk/docs/tutorial/extra-data-types.md

    Alejandra <******@****.***> 1711071731 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/extra-data-types.md

    * `Decimal`:
        * 标准的 Python `Decimal`。
        * 在请求和响应中被当做 `float` 一样处理。
    * 您可以在这里检查所有有效的pydantic数据类型: <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic data types</a>.
    
    ## 例子
    
    下面是一个*路径操作*的示例,其中的参数使用了上面的一些类型。
    
    === "Python 3.10+"
    
        ```Python hl_lines="1  3  12-16"
        {!> ../../../docs_src/extra_data_types/tutorial001_an_py310.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/mdo/reader.vm

                switch (next) {
                    case XMLStreamReader.SPACE:
                    case XMLStreamReader.COMMENT:
                    case XMLStreamReader.PROCESSING_INSTRUCTION:
                    case XMLStreamReader.CDATA:
                    case XMLStreamReader.CHARACTERS:
                        continue;
                    case XMLStreamReader.START_ELEMENT:
                    case XMLStreamReader.END_ELEMENT:
                        return next;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  10. src/mdo/reader-stax.vm

                switch (next) {
                    case XMLStreamReader.SPACE:
                    case XMLStreamReader.COMMENT:
                    case XMLStreamReader.PROCESSING_INSTRUCTION:
                    case XMLStreamReader.CDATA:
                    case XMLStreamReader.CHARACTERS:
                        continue;
                    case XMLStreamReader.START_ELEMENT:
                    case XMLStreamReader.END_ELEMENT:
                        return next;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
Back to top