Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for correctly (0.3 sec)

  1. fastapi/applications.py

        def middleware(
            self,
            middleware_type: Annotated[
                str,
                Doc(
                    """
                    The type of middleware. Currently only supports `http`.
                    """
                ),
            ],
        ) -> Callable[[DecoratedCallable], DecoratedCallable]:
            """
            Add a middleware to the application.
    
    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

      environ_cp['TF_CUDNN_VERSION'] = tf_cudnn_version
    
    
    def set_tf_tensorrt_version(environ_cp):
      """Set TF_TENSORRT_VERSION."""
      if not (is_linux() or is_windows()):
        raise ValueError('Currently TensorRT is only supported on Linux platform.')
    
      if not int(environ_cp.get('TF_NEED_TENSORRT', False)):
        return
    
      ask_tensorrt_version = (
          'Please specify the TensorRT version you want to use. '
    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