Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 56 for 89 (0.01 seconds)

  1. docs/pt/docs/tutorial/dependencies/index.md

    Primeiro vamos focar na dependência.
    
    Ela é apenas uma função que pode receber os mesmos parâmetros de uma *função de operação de rota*:
    
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8:9] *}
    
    E pronto.
    
    **2 linhas**.
    
    E com a mesma forma e estrutura de todas as suas *funções de operação de rota*.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Nov 12 16:23:57 GMT 2025
    - 10.7K bytes
    - Click Count (0)
  2. docs/de/docs/tutorial/dependencies/index.md

    Konzentrieren wir uns zunächst auf die Abhängigkeit – die Dependency.
    
    Es handelt sich einfach um eine Funktion, die die gleichen Parameter entgegennimmt wie eine *Pfadoperation-Funktion*:
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8:9] *}
    
    Das war's schon.
    
    **Zwei Zeilen**.
    
    Und sie hat die gleiche Form und Struktur wie alle Ihre *Pfadoperation-Funktionen*.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Sep 20 15:10:09 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  3. docs/ko/docs/tutorial/dependencies/index.md

    하지만 이를 통해 **의존성 주입** 시스템이 어떻게 작동하는지에 중점을 둘 것입니다.
    
    ### 의존성 혹은 "디펜더블" 만들기
    
    의존성에 집중해 봅시다.
    
    *경로 작동 함수*가 가질 수 있는 모든 매개변수를 갖는 단순한 함수입니다:
    
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8:9] *}
    
    이게 다입니다.
    
    **단 두 줄입니다**.
    
    그리고, 이 함수는 여러분의 모든 *경로 작동 함수*가 가지고 있는 것과 같은 형태와 구조를 가지고 있습니다.
    
    여러분은 이를 "데코레이터"가 없는 (`@app.get("/some-path")`가 없는) *경로 작동 함수*라고 생각할 수 있습니다.
    
    그리고 여러분이 원하는 무엇이든 반환할 수 있습니다.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Nov 18 02:25:44 GMT 2024
    - 11.1K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/response-model.md

    ### Annotate a Response Subclass { #annotate-a-response-subclass }
    
    You can also use a subclass of `Response` in the type annotation:
    
    {* ../../docs_src/response_model/tutorial003_03_py39.py hl[8:9] *}
    
    This will also work because `RedirectResponse` is a subclass of `Response`, and FastAPI will automatically handle this simple case.
    
    ### Invalid Return Type Annotations { #invalid-return-type-annotations }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 20 15:55:38 GMT 2025
    - 15.5K bytes
    - Click Count (0)
  5. docs/pt/docs/tutorial/response-model.md

    ### Anote uma subclasse de Response { #annotate-a-response-subclass }
    
    Você também pode usar uma subclasse de `Response` na anotação de tipo:
    
    {* ../../docs_src/response_model/tutorial003_03_py39.py hl[8:9] *}
    
    Isso também funcionará porque `RedirectResponse` é uma subclasse de `Response`, e o FastAPI tratará automaticamente este caso simples.
    
    ### Anotações de Tipo de Retorno Inválido { #invalid-return-type-annotations }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 17.3K bytes
    - Click Count (0)
  6. docs/pt/docs/tutorial/sql-databases.md

    Em seguida, usamos `hero_db.sqlmodel_update(hero_data)` para atualizar o `hero_db` com os dados de `hero_data`.
    
    {* ../../docs_src/sql_databases/tutorial002_an_py310.py ln[83:93] hl[83:84,88:89] *}
    
    ### Deletar um Hero Novamente { #delete-a-hero-again }
    
    **Deletar** um hero permanece praticamente o mesmo.
    
    Não vamos satisfazer o desejo de refatorar tudo neste aqui. 😅
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 20:32:40 GMT 2025
    - 16.9K bytes
    - Click Count (0)
  7. docs/uk/docs/tutorial/response-model.md

    ### Анотація підкласу Response
    
    Також можна використовувати підклас `Response` у анотації типу:
    
    {* ../../docs_src/response_model/tutorial003_03.py hl[8:9] *}
    
    Це теж працюватиме, бо `RedirectResponse` — підклас `Response`, і FastAPI автоматично обробить цей простий випадок.
    
    ### Некоректні анотації типу повернення
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Jun 24 19:14:01 GMT 2025
    - 24.8K bytes
    - Click Count (0)
  8. docs/ru/docs/tutorial/response-model.md

    ### Аннотировать подкласс Response { #annotate-a-response-subclass }
    
    Вы также можете использовать подкласс `Response` в аннотации типа:
    
    {* ../../docs_src/response_model/tutorial003_03_py39.py hl[8:9] *}
    
    Это тоже сработает, так как `RedirectResponse` — подкласс `Response`, и FastAPI автоматически обработает этот случай.
    
    ### Некорректные аннотации возвращаемых типов { #invalid-return-type-annotations }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 25.8K bytes
    - Click Count (0)
  9. docs/de/docs/tutorial/response-model.md

    ### Eine Unterklasse von Response annotieren { #annotate-a-response-subclass }
    
    Sie können auch eine Unterklasse von `Response` in der Typannotation verwenden.
    
    {* ../../docs_src/response_model/tutorial003_03_py39.py hl[8:9] *}
    
    Das wird ebenfalls funktionieren, weil `RedirectResponse` eine Unterklasse von `Response` ist, und FastAPI sich um diesen einfachen Anwendungsfall automatisch kümmert.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 24 10:28:19 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

        rangeSet.add(Range.closed(3, 10));
        rangeSet.removeAll(asList(Range.open(1, 3), Range.closed(5, 8), Range.closed(9, 11)));
        assertThat(rangeSet.asRanges())
            .containsExactly(Range.closedOpen(3, 5), Range.open(8, 9))
            .inOrder();
      }
    
      @GwtIncompatible // SerializableTester
      public void testSerialization() {
        RangeSet<Integer> rangeSet = TreeRangeSet.create();
        rangeSet.add(Range.closed(3, 10));
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 24.4K bytes
    - Click Count (0)
Back to Top