Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for usually (0.25 sec)

  1. fastapi/applications.py

                        license name used for the API.
                    * `identifier`: (`str`) An [SPDX](https://spdx.dev/) license expression
                        for the API. The `identifier` field is mutually exclusive of the `url`
                        field. Available since OpenAPI 3.1.0, FastAPI 0.99.0.
                    * `url`: (`str`) A URL to the license used for the API. This MUST be
                        the format of a URL.
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  2. configure.py

            clang_compiler_path = set_clang_compiler_path_win(environ_cp)
            clang_version = retrieve_clang_version(clang_compiler_path)
            disable_clang_offsetof_extension(clang_version)
    
      # ROCm / CUDA are mutually exclusive.
      # At most 1 GPU platform can be configured.
      gpu_platform_count = 0
      if environ_cp.get('TF_NEED_ROCM') == '1':
        gpu_platform_count += 1
      if environ_cp.get('TF_NEED_CUDA') == '1':
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
Back to top