Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for OVER (0.01 sec)

  1. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

        client ->> dep_req: Start request
        Note over dep_req: Run code up to yield
        dep_req ->> dep_func: Pass dependency
        Note over dep_func: Run code up to yield
        dep_func ->> operation: Run path operation with dependency
        operation ->> dep_func: Return from path operation
        Note over dep_func: Run code after yield
        Note over dep_func: ✅ Dependency closed
        dep_func ->> client: Send response to client
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md

        client ->> dep_req: Iniciar requisição
        Note over dep_req: Executar código até o yield
        dep_req ->> dep_func: Passar dependência
        Note over dep_func: Executar código até o yield
        dep_func ->> operation: Executar operação de rota com dependência
        operation ->> dep_func: Retornar da operação de rota
        Note over dep_func: Executar código após o yield
        Note over dep_func: ✅ Dependência fechada
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md

        client ->> dep_req: Запрос
        Note over dep_req: Выполнить код до yield
        dep_req ->> dep_func: Передать значение
        Note over dep_func: Выполнить код до yield
        dep_func ->> operation: Выполнить функцию-обработчик пути
        operation ->> dep_func: Выход из функции-обработчика пути
        Note over dep_func: Выполнить код после yield
        Note over dep_func: ✅ Зависимость закрыта
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/dependencies/dependencies-with-yield.md

        client ->> dep_req: Startet den Request
        Note over dep_req: Führt den Code bis zum yield aus
        dep_req ->> dep_func: Reicht Abhängigkeit weiter
        Note over dep_func: Führt den Code bis zum yield aus
        dep_func ->> operation: Führt Pfadoperation mit Abhängigkeit aus
        operation ->> dep_func: Kehrt aus Pfadoperation zurück
        Note over dep_func: Führt Code nach yield aus
        Note over dep_func: ✅ Abhängigkeit geschlossen
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/dependencies/dependencies-with-yield.md

        client ->> dep_req: Start request
        Note over dep_req: Run code up to yield
        dep_req ->> dep_func: Pass dependency
        Note over dep_func: Run code up to yield
        dep_func ->> operation: Run path operation with dependency
        operation ->> dep_func: Return from path operation
        Note over dep_func: Run code after yield
        Note over dep_func: ✅ Dependency closed
        dep_func ->> client: Send response to client
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ArrayListMultimap.java

       * Creates a new, empty {@code ArrayListMultimap} with the default initial capacities.
       *
       * <p>You may also consider the equivalent {@code
       * MultimapBuilder.hashKeys().arrayListValues().build()}, which provides more control over the
       * underlying data structure.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          ArrayListMultimap<K, V> create() {
        return new ArrayListMultimap<>();
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 05 23:15:58 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. docs/zh/llm-prompt.md

    2) Never change punctuation inside inline code, code blocks, URLs, or file paths.
    
    ### Ellipsis
    
    1) Keep ellipsis style consistent within each document, prefer `...` over  `……`.
    2) Never change ellipsis in code, URLs, or CLI examples.
    
    ### Preferred translations / glossary
    
    Use the following preferred translations when they apply in documentation prose:
    
    - request (HTTP): 请求
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:49:08 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. docs/zh-hant/llm-prompt.md

    3) For more details, please follow the [Chinese Copywriting Guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines).
    
    ### Ellipsis
    
    1) Keep ellipsis style consistent within each document, prefer `...` over `……`.
    2) Never change ellipsis in code, URLs, or CLI examples.
    
    ### Preferred translations / glossary
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:49:46 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.reflect.Method;
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /**
     * Since annotations have some reusability issues that force copy and paste all over the place, it's
     * worth having a test to ensure that all our Feature enums have their annotations correctly set up.
     *
     * @author George van den Driessche
     */
    public class FeatureEnumTest extends TestCase {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/custom-response.md

    If you have a <a href="https://docs.python.org/3/glossary.html#term-file-like-object" class="external-link" target="_blank">file-like</a> object (e.g. the object returned by `open()`), you can create a generator function to iterate over that file-like object.
    
    That way, you don't have to read it all first in memory, and you can pass that generator function to the `StreamingResponse`, and return it.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 12.4K bytes
    - Viewed (0)
Back to top