Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 131 for discussion (0.07 sec)

  1. docs/ru/docs/advanced/advanced-dependencies.md

    Если у вас есть другой сценарий, где нужно раннее завершение зависимости с `yield`, пожалуйста, создайте <a href="https://github.com/fastapi/fastapi/discussions/new?category=questions" class="external-link" target="_blank">вопрос в GitHub Discussions</a> с описанием конкретного кейса и почему вам было бы полезно иметь раннее закрытие для зависимостей с `yield`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. .github/workflows/notify-translations.yml

            required: false
            default: 'false'
    
    env:
      UV_SYSTEM_PYTHON: 1
    
    jobs:
      job:
        runs-on: ubuntu-latest
        permissions:
          discussions: write
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - name: Set up Python
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Nov 21 13:03:21 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. tests/test_union_body_discriminator_annotated.py

    # Ref: https://github.com/fastapi/fastapi/discussions/14495
    
    from typing import Annotated, Union
    
    import pytest
    from fastapi import FastAPI
    from fastapi.testclient import TestClient
    from inline_snapshot import snapshot
    from pydantic import BaseModel
    
    
    @pytest.fixture(name="client")
    def client_fixture() -> TestClient:
        from fastapi import Body
        from pydantic import Discriminator, Tag
    
        class Cat(BaseModel):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  4. tests/test_security_scopes_sub_dependency.py

    # Ref: https://github.com/fastapi/fastapi/discussions/6024#discussioncomment-8541913
    
    
    from typing import Annotated
    
    import pytest
    from fastapi import Depends, FastAPI, Security
    from fastapi.security import SecurityScopes
    from fastapi.testclient import TestClient
    
    
    @pytest.fixture(name="call_counts")
    def call_counts_fixture():
        return {
            "get_db_session": 0,
            "get_current_user": 0,
            "get_user_me": 0,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/advanced-dependencies.md

    Se você tiver um caso diferente que precise sair antecipadamente de uma dependência com `yield`, por favor crie uma <a href="https://github.com/fastapi/fastapi/discussions/new?category=questions" class="external-link" target="_blank">Pergunta no GitHub Discussions</a> com o seu caso específico e por que você se beneficiaria de ter o fechamento antecipado para dependências com `yield`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 20:32:40 UTC 2025
    - 10K bytes
    - Viewed (0)
  6. tests/test_file_and_form_order_issue_9116.py

    """
    Regression test, Error 422 if Form is declared before File
    See https://github.com/tiangolo/fastapi/discussions/9116
    """
    
    from pathlib import Path
    from typing import Annotated
    
    import pytest
    from fastapi import FastAPI, File, Form
    from fastapi.testclient import TestClient
    
    app = FastAPI()
    
    
    @app.post("/file_before_form")
    def file_before_form(
        file: bytes = File(),
        city: str = Form(),
    ):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. docs/ko/docs/help-fastapi.md

    ## GitHub의 이슈로 다른사람 돕기
    
    다른 사람들의 질문에 도움을 줄 수 있습니다:
    
    * <a href="https://github.com/fastapi/fastapi/discussions/categories/questions?discussions_q=category%3AQuestions+is%3Aunanswered" class="external-link" target="_blank">GitHub 디스커션</a>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java

    /**
     * A build context that matches a Maven project to a given task segment, and the session to be used.
     * <p>
     * A note to the reader;
     * </p>
     * <p>
     * There are several issues/discussions regarding how "aggregator" plugins should be handled.
     * Read for instance http://docs.codehaus.org/display/MAVEN/Deterministic+Lifecycle+Planning
     * </p>
     * <p>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. docs/de/docs/_llm-test.md

    * der Encoder
    * der Decoder
    * kodieren
    * dekodieren
    
    * die Exception
    * werfen
    
    * der Ausdruck
    * die Anweisung
    
    * das Frontend
    * das Backend
    
    * die GitHub-Diskussion
    * das GitHub-Issue
    
    * die Leistung
    * die Leistungsoptimierung
    
    * der Rückgabetyp
    * der Rückgabewert
    
    * die Sicherheit
    * das Sicherheitsschema
    
    * der Task
    * der Hintergrundtask
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 07:17:04 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  10. MIGRATION.md

    - **Thumbnail**: `logs/fess-thumbnail.log`
    
    ### Getting Help
    
    - **Documentation**: https://fess.codelibs.org/
    - **GitHub Issues**: https://github.com/codelibs/fess/issues
    - **Discussions**: https://github.com/codelibs/fess/discussions
    
    ---
    
    ## Migration Checklist
    
    Use this checklist to ensure a complete migration:
    
    ### Pre-Migration
    
    - [ ] Assess current search system (document count, size, sources)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
Back to top