Search Options

Results per page
Sort
Preferred Languages
Advance

Results 581 - 590 of 665 for En (1.54 sec)

  1. docs/em/docs/python-types.md

    โš  ๐Ÿ‘œ ๐Ÿ‘ˆ โš™๏ธ ๐Ÿฉ ๐Ÿ ๐Ÿ†Ž, ๐Ÿ‘ ๐Ÿฅ‰ (โ†ฉ๏ธ โŽ ๐ŸŒ– ๐ŸŽ“, ๐Ÿ‘จโ€๐ŸŽจ, โ™’๏ธ), **FastAPI** ๐Ÿ”œ ๐Ÿ“š ๐Ÿ‘ท ๐Ÿ‘†.
    
    /// info
    
    ๐Ÿšฅ ๐Ÿ‘† โช ๐Ÿšถ ๐Ÿ”˜ ๐ŸŒ ๐Ÿ”ฐ &amp; ๐Ÿ‘Ÿ ๐Ÿ”™ ๐Ÿ‘€ ๐ŸŒ… ๐Ÿ”ƒ ๐Ÿ†Ž, ๐Ÿ‘ โ„น <a href="https://mypy.readthedocs.io/en/latest/cheat_sheet_py3.html" class="external-link" target="_blank"> "๐ŸŽฎ ๐ŸŽผ" โšช๏ธโžก๏ธ `mypy`</a>.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Functions.java

       * serializable.
       *
       * @param g the second function to apply
       * @param f the first function to apply
       * @return the composition of {@code f} and {@code g}
       * @see <a href="//en.wikipedia.org/wiki/Function_composition">function composition</a>
       */
      public static <A extends @Nullable Object, B extends @Nullable Object, C extends @Nullable Object>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  3. docs/ko/docs/deployment/server-workers.md

    ///
    
    ## ๊ตฌ๋‹ˆ์ฝ˜๊ณผ ์œ ๋น„์ฝ˜ ์›Œ์ปค
    
    **Gunicorn**์€ **WSGI ํ‘œ์ค€**์„ ์ฃผ๋กœ ์‚ฌ์šฉํ•˜๋Š” ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜ ์„œ๋ฒ„์ž…๋‹ˆ๋‹ค. ์ด๊ฒƒ์€ ๊ตฌ๋‹ˆ์ฝ˜์ด ํ”Œ๋ผ์Šคํฌ์™€ ์Ÿ๊ณ ์™€ ๊ฐ™์€ ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜์„ ์ œ๊ณตํ•  ์ˆ˜ ์žˆ๋‹ค๋Š” ๊ฒƒ์„ ์˜๋ฏธํ•ฉ๋‹ˆ๋‹ค. ๊ตฌ๋‹ˆ์ฝ˜ ์ž์ฒด๋Š” ์ตœ์‹  **<a href="https://asgi.readthedocs.io/en/latest/" class="external-link" target="_blank">ASGI ํ‘œ์ค€</a>**์„ ์‚ฌ์šฉํ•˜๊ธฐ ๋•Œ๋ฌธ์— FastAPI์™€ ํ˜ธํ™˜๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.
    
    ํ•˜์ง€๋งŒ ๊ตฌ๋‹ˆ์ฝ˜์€ **ํ”„๋กœ์„ธ์Šค ๊ด€๋ฆฌ์ž**์—ญํ• ์„ ํ•˜๊ณ  ์‚ฌ์šฉ์ž์—๊ฒŒ ํŠน์ • **์›Œ์ปค ํ”„๋กœ์„ธ์Šค ํด๋ž˜์Šค**๋ฅผ ์•Œ๋ ค์ค๋‹ˆ๋‹ค. ๊ทธ๋Ÿฐ ๋‹ค์Œ ๊ตฌ๋‹ˆ์ฝ˜์€ ํ•ด๋‹น ํด๋ž˜์Šค๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ํ•˜๋‚˜ ์ด์ƒ์˜ **์›Œ์ปค ํ”„๋กœ์„ธ์Šค**๋ฅผ ์‹œ์ž‘ํ•ฉ๋‹ˆ๋‹ค.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/Quantiles.java

    import com.google.common.primitives.Ints;
    import java.math.RoundingMode;
    import java.util.Collection;
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Provides a fluent API for calculating <a
     * href="http://en.wikipedia.org/wiki/Quantile">quantiles</a>.
     *
     * <h3>Examples</h3>
     *
     * <p>To compute the median:
     *
     * {@snippet :
     * double myMedian = median().compute(myDataset);
     * }
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 30.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

        }
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * sets in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the sets. For example:
       *
       * {@snippet :
       * Sets.cartesianProduct(ImmutableList.of(
       *     ImmutableSet.of(1, 2),
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

        Thread.sleep(10) // Make sure the timestamps are unique.
        val cacheHit =
          executeSynchronously(
            "/",
            "Accept-Language",
            "en-US",
            "Accept-Charset",
            "UTF-8",
          )
    
        // Check the merged response. The request is the application's original request.
        cacheHit
          .assertCode(200)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NetworkExplorer.java

                maxLen = 50;
            }
            maxLen *= 9; /* convert to px */
    
            resp.setContentType("text/html");
    
            out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
            out.println("<html><head><title>Network Explorer</title>");
            out.println("<meta HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">");
            out.println("<style TYPE=\"text/css\">");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/response-model.md

    /// tip | Tipp
    
    Die Syntax `{"name", "description"}` erzeugt ein `set` mit diesen zwei Werten.
    
    ร„quivalent zu `set(["name", "description"])`.
    
    ///
    
    #### `list`en statt `set`s verwenden
    
    Wenn Sie vergessen, ein `set` zu verwenden, und stattdessen eine `list`e oder ein `tuple` รผbergeben, wird FastAPI die dennoch in ein `set` konvertieren, und es wird korrekt funktionieren:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/sql-databases.md

    /// tip | ะŸะพะดัะบะฐะทะบะฐ
    
    ะ’ SQLModel ะฑัƒะดัƒั‚ ะฒะบะปัŽั‡ะตะฝั‹ ัƒั‚ะธะปะธั‚ั‹ ะผะธะณั€ะฐั†ะธะธ, ะฒั…ะพะดัั‰ะธะต ะฒ ัะพัั‚ะฐะฒ Alembic, ะฝะพ ะฝะฐ ะดะฐะฝะฝั‹ะน ะผะพะผะตะฝั‚ ะฒั‹ ะฟั€ะพัั‚ะพ ะผะพะถะตั‚ะต ะธัะฟะพะปัŒะทะพะฒะฐั‚ัŒ
    <a href="https://alembic.sqlalchemy.org/en/latest/" class="external-link" target="_blank">Alembic</a> ะฝะฐะฟั€ัะผัƒัŽ.
    
    ///
    
    ### ะกะพะทะดะฐะฝะธะต ะณะตั€ะพั (Hero)
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Dec 17 21:20:20 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/UnsignedInts.java

          builder.append(separator).append(toString(array[i]));
        }
        return builder.toString();
      }
    
      /**
       * Returns a comparator that compares two arrays of unsigned {@code int} values <a
       * href="http://en.wikipedia.org/wiki/Lexicographical_order">lexicographically</a>. That is, it
       * compares, using {@link #compare(int, int)}), the first pair of values that follow any common
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Feb 09 16:22:33 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top