Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 1016 (0.02 sec)

  1. fastapi/encoders.py

        where an integer (but not int typed) is used. Encoding this as a float
        results in failed round-tripping between encode and parse.
        Our Id type is a prime example of this.
    
        >>> decimal_encoder(Decimal("1.0"))
        1.0
    
        >>> decimal_encoder(Decimal("1"))
        1
    
        >>> decimal_encoder(Decimal("NaN"))
        nan
        """
        exponent = dec_value.as_tuple().exponent
        if isinstance(exponent, int) and exponent >= 0:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  2. .bazelrc

    common:release_macos_x86 --config=avx_linux
    common:release_macos_x86 --cpu=darwin
    # Target Catalina as the minimum compatible OS version
    common:release_macos_x86 --macos_minimum_os=10.15
    common:release_macos_x86 --action_env MACOSX_DEPLOYMENT_TARGET=10.15
    
    # Build configs for macOS Arm64
    common:release_macos_arm64 --config=release_macos_base
    common:release_macos_arm64 --cpu=darwin_arm64
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Fri Dec 26 23:20:26 UTC 2025
    - 56.8K bytes
    - Viewed (0)
  3. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeGroovyMultiProject",
        "linux" : 740
      }, {
        "testProject" : "largeJavaMultiProject",
        "linux" : 566,
        "windows" : 1006,
        "macOs" : 281
      }, {
        "testProject" : "largeMonolithicGroovyProject",
        "linux" : 2320
      }, {
        "testProject" : "largeMonolithicJavaProject",
        "linux" : 1577
      } ]
    }, {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 25 10:54:09 UTC 2025
    - 25K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    * Add missing dependencies for testing. PR [#1026](https://github.com/tiangolo/fastapi/pull/1026) by [@sm-Fifteen](https://github.com/sm-Fifteen).
    * Fix accepting valid types for response models, including Python types like `List[int]`. PR [#1017](https://github.com/tiangolo/fastapi/pull/1017) by [@patrickmckenna](https://github.com/patrickmckenna).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top