Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 164 for Kotten (0.17 sec)

  1. docs/de/docs/advanced/response-directly.md

    ## Eine benutzerdefinierte `Response` zurückgeben
    
    Das obige Beispiel zeigt alle Teile, die Sie benötigen, ist aber noch nicht sehr nützlich, da Sie das `item` einfach direkt hätten zurückgeben können, und **FastAPI** würde es für Sie in eine `JSONResponse` einfügen, es in ein `dict` konvertieren, usw. All das standardmäßig.
    
    Sehen wir uns nun an, wie Sie damit eine benutzerdefinierte Response zurückgeben können.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:19:36 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/testing-dependencies.md

    Dieser Anbieter berechnet Ihnen möglicherweise Gebühren pro Anfrage, und der Aufruf könnte etwas länger dauern, als wenn Sie einen vordefinierten Scheinbenutzer für Tests hätten.
    
    Sie möchten den externen Anbieter wahrscheinlich einmal testen, ihn aber nicht unbedingt bei jedem weiteren ausgeführten Test aufrufen.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:17:32 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  3. architecture/networking/controllers.md

    **`kube.Client`** is a fairly light wrapper around Kubernetes clients, but offers quite a few benefits.
    Istio consumes _many_ different types of clients (at the time of writing, 7), as well as informers for each of these.
    Additionally, we often need to convert to various different client forms for different libraries we integrate with.
    
    `kube.Client` just bundles these all in one place, so we have a single object to pass around anywhere we need Kubernetes access.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableAsList.java

      abstract ImmutableCollection<E> delegateCollection();
    
      @Override
      public boolean contains(@CheckForNull Object target) {
        // The collection's contains() is at least as fast as ImmutableList's
        // and is often faster.
        return delegateCollection().contains(target);
      }
    
      @Override
      public int size() {
        return delegateCollection().size();
      }
    
      @Override
      public boolean isEmpty() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableAsList.java

      abstract ImmutableCollection<E> delegateCollection();
    
      @Override
      public boolean contains(@CheckForNull Object target) {
        // The collection's contains() is at least as fast as ImmutableList's
        // and is often faster.
        return delegateCollection().contains(target);
      }
    
      @Override
      public int size() {
        return delegateCollection().size();
      }
    
      @Override
      public boolean isEmpty() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  6. docs/pt/docs/benchmarks.md

        * Se você quer fazer comparações com o FastAPI, compare com um _framework_  (ou conjunto de ferramentas) para aplicações _web_ que forneça validação de dados, serialização e documentação, como Flask-apispec, NestJS, Molten, etc. _Frameworks_ com validação de dados automática, serialização e documentação integradas....
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 3.9K bytes
    - Viewed (0)
  7. docs/en/docs/alternatives.md

        Although in FastAPI it's optional, and is used mainly to set headers, cookies, and alternative status codes.
    
    ### <a href="https://moltenframework.com/" class="external-link" target="_blank">Molten</a>
    
    I discovered Molten in the first stages of building **FastAPI**. And it has quite similar ideas:
    
    * Based on Python type hints.
    * Validation and documentation from these types.
    * Dependency Injection system.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  8. docs/fr/docs/benchmarks.md

        * Si on compare FastAPI, il faut le comparer à d'autres frameworks web (ou ensemble d'outils) qui fournissent la validation des données, la sérialisation et la documentation, comme Flask-apispec, NestJS, Molten, etc....
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jul 27 18:49:56 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  9. docs/ru/docs/alternatives.md

        Хотя в FastAPI это необязательно и используется в основном для установки заголовков, куки и альтернативных кодов состояния.
    
    ### <a href="https://moltenframework.com/" class="external-link" target="_blank">Molten</a>
    
    Molten мне попался на начальной стадии написания **FastAPI**. В нём были похожие идеи:
    
    * Использование подсказок типов.
    * Валидация и документация исходя из этих подсказок.
    * Система внедрения зависимостей.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 39.4K bytes
    - Viewed (0)
  10. docs/uk/docs/alternatives.md

    ### <a href="https://moltenframework.com/" class="external-link" target="_blank">Molten</a>
    
    Я відкрив для себе Molten на перших етапах створення **FastAPI**. І він має досить схожі ідеї:
    
    * Базується на підказках типу Python.
    * Перевірка та документація цих типів.
    * Система впровадження залежностей.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 38.2K bytes
    - Viewed (0)
Back to top