Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for init (0.12 sec)

  1. .github/actions/notify-translations/app/main.py

        github_repository: str
        input_token: SecretStr
        github_event_path: Path
        github_event_name: Union[str, None] = None
        httpx_timeout: int = 30
        input_debug: Union[bool, None] = False
    
    
    class PartialGitHubEventIssue(BaseModel):
        number: int
    
    
    class PartialGitHubEvent(BaseModel):
        pull_request: PartialGitHubEventIssue
    
    
    def get_graphql_response(
        *,
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Sep 27 23:01:46 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. .github/actions/people/app/main.py

    
    class Comments(BaseModel):
        nodes: List[CommentsNode]
    
    
    class DiscussionsComments(BaseModel):
        nodes: List[DiscussionsCommentsNode]
    
    
    class DiscussionsNode(BaseModel):
        number: int
        author: Union[Author, None] = None
        title: str
        createdAt: datetime
        comments: DiscussionsComments
    
    
    class DiscussionsEdge(BaseModel):
        cursor: str
        node: DiscussionsNode
    
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  3. tests/main.py

        return item_id
    
    
    @app.get("/path/param-lt-int/{item_id}")
    def get_path_param_lt_int(item_id: int = Path(lt=3)):
        return item_id
    
    
    @app.get("/path/param-gt-int/{item_id}")
    def get_path_param_gt_int(item_id: int = Path(gt=3)):
        return item_id
    
    
    @app.get("/path/param-le-int/{item_id}")
    def get_path_param_le_int(item_id: int = Path(le=3)):
        return item_id
    
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 21:56:59 GMT 2024
    - 4.3K bytes
    - Viewed (0)
Back to top