Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. fastapi/param_functions.py

        from .db import User
        from .security import get_current_active_user
    
        app = FastAPI()
    
        @app.get("/users/me/items/")
        async def read_own_items(
            current_user: Annotated[User, Security(get_current_active_user, scopes=["items"])]
        ):
            return [{"item_id": "Foo", "owner": current_user.username}]
        ```
        """
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
  2. configure.py

      # environment variables.
      environ_cp = dict(os.environ)
    
      try:
        current_bazel_version = retrieve_bazel_version()
      except subprocess.CalledProcessError as e:
        print('Error retrieving bazel version: ', e.output.decode('UTF-8').strip())
        raise e
    
      _TF_CURRENT_BAZEL_VERSION = convert_version_to_int(current_bazel_version)
    
      reset_tf_configure_bazelrc()
    
      cleanup_makefile()
    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