Search Options

Results per page
Sort
Preferred Languages
Advance

Results 911 - 920 of 3,109 for Sink (0.06 sec)

  1. guava/src/com/google/common/graph/PredecessorsFunction.java

     * }</pre>
     *
     * you will invoke it depending on the graph representation you're using.
     *
     * <p>If you have an instance of one of the primary {@code common.graph} types ({@link Graph},
     * {@link ValueGraph}, and {@link Network}):
     *
     * <pre>{@code
     * someGraphAlgorithm(startNode, graph);
     * }</pre>
     *
     * This works because those types each implement {@code PredecessorsFunction}. It will also work
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/testing.md

    # ๐Ÿ”ฌ
    
    ๐Ÿ‘ <a href="https://www.starlette.io/testclient/" class="external-link" target="_blank">๐Ÿ’ƒ</a>, ๐Ÿ”ฌ **FastAPI** ๐Ÿˆธ โฉ &amp; ๐Ÿ˜Œ.
    
    โšซ๏ธ โš“๏ธ ๐Ÿ”› <a href="https://www.python-httpx.org" class="external-link" target="_blank">๐Ÿ‡ธ๐Ÿ‡ฒ</a>, โ” ๐Ÿ”„ ๐Ÿ— โš“๏ธ ๐Ÿ”› ๐Ÿ“จ, โšซ๏ธ ๐Ÿ“ถ ๐Ÿ˜ฐ &amp; ๐Ÿ‹๏ธ.
    
    โฎ๏ธ โšซ๏ธ, ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ <a href="https://docs.pytest.org/" class="external-link" target="_blank">โœณ</a> ๐Ÿ”— โฎ๏ธ **FastAPI**.
    
    ## โš™๏ธ `TestClient`
    
    /// info
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/background-tasks.md

    <a href="https://www.starlette.io/background/" class="external-link" target="_blank">`Starlette์˜ ๊ณต์‹ ๋ฌธ์„œ`</a>์—์„œ ๋ฐฑ๊ทธ๋ผ์šด๋“œ ์ž‘์—…์— ๋Œ€ํ•œ ์ž์„ธํ•œ ๋‚ด์šฉ์„ ํ™•์ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ## ๊ฒฝ๊ณ 
    
    ๋งŒ์•ฝ ๋ฌด๊ฑฐ์šด ๋ฐฑ๊ทธ๋ผ์šด๋“œ ์ž‘์—…์„ ์ˆ˜ํ–‰ํ•ด์•ผํ•˜๊ณ  ๋™์ผํ•œ ํ”„๋กœ์„ธ์Šค์—์„œ ์‹คํ–‰ํ•  ํ•„์š”๊ฐ€ ์—†๋Š” ๊ฒฝ์šฐ (์˜ˆ: ๋ฉ”๋ชจ๋ฆฌ, ๋ณ€์ˆ˜ ๋“ฑ์„ ๊ณต์œ ํ•  ํ•„์š”๊ฐ€ ์—†์Œ) <a href="https://docs.celeryq.dev" class="external-link" target="_blank">`Celery`</a>์™€ ๊ฐ™์€ ํฐ ๋„๊ตฌ๋ฅผ ์‚ฌ์šฉํ•˜๋ฉด ๋„์›€์ด ๋  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ForwardingListenableFuture.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link ListenableFuture} which forwards all its method calls to another future. Subclasses
     * should override one or more methods to modify the behavior of the backing future as desired per
     * the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p>Most subclasses can just use {@link SimpleForwardingListenableFuture}.
     *
     * @author Shardul Deo
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Mar 04 12:23:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/CaseInsensitiveSet.java

    import java.util.Set;
    
    /**
     * ๅคงๆ–‡ๅญ—ๅฐๆ–‡ๅญ—ใ‚’ๆฐ—ใซใ—ใชใ„ {@link Set}ใงใ™ใ€‚
     *
     * @author higa
     */
    public class CaseInsensitiveSet extends AbstractSet<String> implements Set<String>, Serializable {
    
        static final long serialVersionUID = 0L;
    
        private transient Map<String, Object> map = new CaseInsensitiveMap<>();
    
        private static final Object PRESENT = new Object();
    
        /**
         * {@link CaseInsensitiveSet}ใ‚’ไฝœๆˆใ—ใพใ™ใ€‚
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/wsgi.md

    # WSGI inkludieren โ€“ Flask, Django und andere
    
    Sie kรถnnen WSGI-Anwendungen mounten, wie Sie es in [Unteranwendungen โ€“ Mounts](sub-applications.md){.internal-link target=_blank}, [Hinter einem Proxy](behind-a-proxy.md){.internal-link target=_blank} gesehen haben.
    
    Dazu kรถnnen Sie die `WSGIMiddleware` verwenden und damit Ihre WSGI-Anwendung wrappen, zum Beispiel Flask, Django usw.
    
    ## `WSGIMiddleware` verwenden
    
    Sie mรผssen `WSGIMiddleware` importieren.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. docs/pt/docs/advanced/wsgi.md

    # Adicionando WSGI - Flask, Django, entre outros
    
    Como vocรช viu em [Sub Applications - Mounts](sub-applications.md){.internal-link target=_blank} e [Behind a Proxy](behind-a-proxy.md){.internal-link target=_blank}, vocรช pode **"montar"** aplicaรงรตes WSGI.
    
    Para isso, vocรช pode utilizar o `WSGIMiddleware` para encapsular a sua aplicaรงรฃo WSGI, como por exemplo Flask, Django, etc.
    
    ## Usando o `WSGIMiddleware`
    
    Vocรช precisa importar o `WSGIMiddleware`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. docs/zh/docs/index.md

    **Typer** ๆ˜ฏ FastAPI ็š„ๅฐๅŒ่ƒžใ€‚ๅฎƒๆƒณ่ฆๆˆไธบ**ๅ‘ฝไปค่กŒไธญ็š„ FastAPI**ใ€‚ โŒจ๏ธ ๐Ÿš€
    
    ## ไพ่ต–
    
    Python ๅŠๆ›ด้ซ˜็‰ˆๆœฌ
    
    FastAPI ็ซ™ๅœจไปฅไธ‹ๅทจไบบ็š„่‚ฉ่†€ไน‹ไธŠ๏ผš
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> ่ดŸ่ดฃ web ้ƒจๅˆ†ใ€‚
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> ่ดŸ่ดฃๆ•ฐๆฎ้ƒจๅˆ†ใ€‚
    
    ## ๅฎ‰่ฃ…
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ExecutionError.java

    import javax.annotation.CheckForNull;
    
    /**
     * {@link Error} variant of {@link java.util.concurrent.ExecutionException}. As with {@code
     * ExecutionException}, the error's {@linkplain #getCause() cause} comes from a failed task,
     * possibly run in another thread. That cause should itself be an {@code Error}; if not, use {@code
     * ExecutionException} or {@link UncheckedExecutionException}. This allows the client code to
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableBiMap.java

      }
    
      /**
       * Not supported. Use {@link #toImmutableBiMap} instead. This method exists only to hide {@link
       * ImmutableMap#toImmutableMap(Function, Function)} from consumers of {@code ImmutableBiMap}.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Use {@link ImmutableBiMap#toImmutableBiMap}.
       */
      @Deprecated
      @DoNotCall("Use toImmutableBiMap")
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top