Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 201 - 210 of 298 for alternatifs (0.24 seconds)

  1. android/guava/src/com/google/common/base/Suppliers.java

      @IgnoreJRERequirement
      public static <T extends @Nullable Object> Supplier<T> memoizeWithExpiration(
          Supplier<T> delegate, Duration duration) {
        checkNotNull(delegate);
        // The alternative of `duration.compareTo(Duration.ZERO) > 0` causes J2ObjC trouble.
        checkArgument(
            !duration.isNegative() && !duration.isZero(), "duration (%s) must be > 0", duration);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 31 21:24:28 GMT 2026
    - 16.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/primitives/Booleans.java

       *
       * @since 21.0
       */
      public static Comparator<Boolean> falseFirst() {
        return BooleanComparator.FALSE_FIRST;
      }
    
      /**
       * Returns a hash code for {@code value}; obsolete alternative to {@link
       * Boolean#hashCode(boolean)}.
       *
       * @param value a primitive {@code boolean} value
       * @return a hash code for the value
       */
      @InlineMe(replacement = "Boolean.hashCode(value)")
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Sep 25 15:01:23 GMT 2025
    - 20.6K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

       * instruct Java serialization to use it instead of the originally created object.
       *
       * <p>We have chosen this approach over at least two alternatives:
       *
       * <ul>
       *   <li>We could change the serialization of this class incompatibly. We have reserved the right
       *       to make such changes to our serialized forms, and we have made them before, usually
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  4. docs/ja/docs/tutorial/path-params.md

    /// check | 確認
    
    繰り返しになりますが、同じPython型宣言を使用するだけで、**FastAPI**は対話的なドキュメントを自動的に生成します(Swagger UIを統合)。
    
    パスパラメータが整数として宣言されていることに注意してください。
    
    ///
    
    ## 標準ベースのメリット、ドキュメンテーションの代替物 { #standards-based-benefits-alternative-documentation }
    
    また、生成されたスキーマが [OpenAPI](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md) 標準に従っているので、互換性のあるツールが多数あります。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  5. docs/uk/docs/tutorial/first-steps.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ### Альтернативна API документація { #alternative-api-docs }
    
    А тепер перейдіть сюди [http://127.0.0.1:8000/redoc](http://127.0.0.1:8000/redoc).
    
    Ви побачите альтернативну автоматичну документацію (надається [ReDoc](https://github.com/Rebilly/ReDoc)):
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/index.md

    你會看到自動生成的互動式 API 文件(由 [Swagger UI](https://github.com/swagger-api/swagger-ui) 提供):
    
    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ### 替代 API 文件 { #alternative-api-docs }
    
    現在前往 [http://127.0.0.1:8000/redoc](http://127.0.0.1:8000/redoc)。
    
    你會看到另一種自動文件(由 [ReDoc](https://github.com/Rebilly/ReDoc) 提供):
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20.8K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/Ordering.java

       * Collections.min(collection, thisComparator)} instead. Otherwise, use {@code
       * Streams.stream(iterable).min(thisComparator).get()} instead. Note that these alternatives do
       * not guarantee which tied minimum element is returned.
       *
       * @param iterable the iterable whose minimum element is to be determined
       * @throws NoSuchElementException if {@code iterable} is empty
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 39.4K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/io/CharStreams.java

       *
       * <p>This method prioritizes convenience over performance: It reads the entire input into memory
       * immediately. To instead read and process lines individually, use an alternative like {@link
       * BufferedReader#lines()}.
       *
       * <p><b>Java 25+ users:</b> If the input is a {@link Reader}, you may prefer {@link
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 29 13:56:24 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  9. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                 * because we might close the socket during a
                 * request. However the chances are slim and the
                 * retry code should ensure the overall request
                 * is serviced. The alternative complicates things
                 * more than I think is worth it.
                 */
    
                if (socket != null) {
                    socket.close();
                    socket = null;
                }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 17.6K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image01.png">
    
    /// check
    
    同樣地,只要使用那個 Python 型別宣告,**FastAPI** 就會提供自動、互動式的文件(整合 Swagger UI)。
    
    注意路徑參數被宣告為整數。
    
    ///
    
    ## 基於標準的優勢與替代文件 { #standards-based-benefits-alternative-documentation }
    
    而且因為產生的 schema 來自 [OpenAPI](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md) 標準,有很多相容的工具可用。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
Back to Top