Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,670 for Hsing (0.03 sec)

  1. docs/en/docs/advanced/using-request-directly.md

    # Using the Request Directly { #using-the-request-directly }
    
    Up to now, you have been declaring the parts of the request that you need with their types.
    
    Taking data from:
    
    * The path as parameters.
    * Headers.
    * Cookies.
    * etc.
    
    And by doing so, **FastAPI** is validating that data, converting it and generating documentation for your API automatically.
    
    But there are situations where you might need to access the `Request` object directly.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. docs/ru/docs/advanced/using-request-directly.md

    # Прямое использование Request { #using-the-request-directly }
    
    До этого вы объявляли нужные части HTTP-запроса вместе с их типами.
    
    Извлекая данные из:
    
    * пути (как параметров),
    * HTTP-заголовков,
    * Cookie,
    * и т.д.
    
    Тем самым **FastAPI** валидирует эти данные, преобразует их и автоматически генерирует документацию для вашего API.
    
    Но бывают ситуации, когда нужно обратиться к объекту `Request` напрямую.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/using-request-directly.md

    # Usar el Request Directamente { #using-the-request-directly }
    
    Hasta ahora, has estado declarando las partes del request que necesitas con sus tipos.
    
    Tomando datos de:
    
    * El path como parámetros.
    * Headers.
    * Cookies.
    * etc.
    
    Y al hacerlo, **FastAPI** está validando esos datos, convirtiéndolos y generando documentación para tu API automáticamente.
    
    Pero hay situaciones donde podrías necesitar acceder al objeto `Request` directamente.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/using-request-directly.md

    # Den Request direkt verwenden { #using-the-request-directly }
    
    Bisher haben Sie die Teile des <abbr title="Request – Anfrage: Daten, die der Client zum Server sendet">Requests</abbr>, die Sie benötigen, mithilfe von deren Typen deklariert.
    
    Daten nehmend von:
    
    * Dem Pfad als Parameter.
    * Headern.
    * Cookies.
    * usw.
    
    Und indem Sie das tun, validiert **FastAPI** diese Daten, konvertiert sie und generiert automatisch Dokumentation für Ihre API.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/using-request-directly.md

    # Utilizando o Request diretamente { #using-the-request-directly }
    
    Até agora você declarou as partes da requisição que você precisa utilizando os seus tipos.
    
    Obtendo dados de:
    
    * O path como parâmetros.
    * Cabeçalhos (*Headers*).
    * Cookies.
    * etc.
    
    E ao fazer isso, o **FastAPI** está validando as informações, convertendo-as e gerando documentação para a sua API automaticamente.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. docs/ko/docs/advanced/using-request-directly.md

    Marcelo Trylesinski <******@****.***> 1760204929 +0100
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  7. docs/zh/docs/advanced/using-request-directly.md

    Marcelo Trylesinski <******@****.***> 1760204929 +0100
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // rather than any other VCS sites. Pulling from any other URL is not guaranteed to be supported.
    
    // VERSION: 2024-11-26_09-06-27_UTC
    // COMMIT: bf32ba1ae6228a185ebf297d636f1c6541149c45
    
    // Instructions on pulling and using this list can be found at https://publicsuffix.org/list/.
    
    // ===BEGIN ICANN DOMAINS===
    
    // ac : http://nic.ac/rules.htm
    ac
    com.ac
    edu.ac
    gov.ac
    net.ac
    mil.ac
    org.ac
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (1)
  9. android/guava-tests/test/com/google/common/collect/SetViewTest.java

      @J2ktIncompatible
      @GwtIncompatible // suite
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
        TestSuite suite = new TestSuite();
    
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
                      @Override
                      protected Set<String> create(String[] elements) {
                        return union(emptySet(), emptySet());
                      }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        return emptySet();
      }
    
      protected Collection<Method> suppressForConcurrentSkipListSetWithComparator() {
        return emptySet();
      }
    
      public Test testsForEmptySet() {
        return SetTestSuiteBuilder.using(
                new TestStringSetGenerator() {
                  @Override
                  public Set<String> create(String[] elements) {
                    return emptySet();
                  }
                })
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top