Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 241 - 250 of 298 for alternatifs (0.12 seconds)

  1. MIGRATION.md

    2. **Update client applications** to use Fess's JSON Search API (see [API Reference](#api-reference) section)
    3. **Gradually migrate** from GSA query format to Fess's native API
    
    **Alternative Approach**: Instead of relying on GSA API compatibility, we recommend migrating client applications to use Fess's modern JSON API (`/api/v1/documents`), which provides more features and better performance.
    
    ---
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  2. docs/uk/docs/virtual-environments.md

    // Тепер, коли ви запускаєте python, він знайде пакет sirius, встановлений у цьому віртуальному середовищі ✨
    $ python main.py
    
    I solemnly swear 🐺
    ```
    
    </div>
    
    ## Альтернативи { #alternatives }
    
    Це простий посібник, щоб ви швидко стартували та зрозуміли, як усе працює «під капотом».
    
    Існує багато альтернатив керування віртуальними середовищами, залежностями пакетів (вимогами), проєктами.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  3. 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/en/docs/advanced/behind-a-proxy.md

    This is a more advanced use case. Feel free to skip it.
    
    ///
    
    By default, **FastAPI** will create a `server` in the OpenAPI schema with the URL for the `root_path`.
    
    But you can also provide other alternative `servers`, for example if you want *the same* docs UI to interact with both a staging and a production environment.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  5. docs/ja/docs/advanced/events.md

    上のコード例では直接それを使ってはいませんが、FastAPI に渡して内部で使ってもらいます。
    
    `FastAPI` アプリの `lifespan` パラメータは「非同期コンテキストマネージャ」を受け取るので、新しく作った `lifespan` 非同期コンテキストマネージャを渡せます。
    
    {* ../../docs_src/events/tutorial003_py310.py hl[22] *}
    
    ## 代替のイベント(非推奨) { #alternative-events-deprecated }
    
    /// warning | 注意
    
    推奨される方法は、上で説明したとおり `FastAPI` アプリの `lifespan` パラメータを使って「起動」と「シャットダウン」を扱うことです。`lifespan` パラメータを指定すると、`startup` と `shutdown` のイベントハンドラは呼び出されなくなります。`lifespan` かイベントか、どちらか一方であり、両方同時ではありません。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  6. docs/ru/docs/deployment/docker.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ## Альтернативная документация API { #alternative-api-docs }
    
    Также можно открыть [http://192.168.99.100/redoc](http://192.168.99.100/redoc) или [http://127.0.0.1/redoc](http://127.0.0.1/redoc) (или аналогичный URL вашего Docker-хоста).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 43.5K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/primitives/Ints.java

       *
       * @since 10.0
       */
      public static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2);
    
      /**
       * Returns a hash code for {@code value}; obsolete alternative to {@link Integer#hashCode(int)}.
       *
       * @param value a primitive {@code int} value
       * @return a hash code for the value
       */
      @InlineMe(replacement = "Integer.hashCode(value)")
      @InlineMeValidationDisabled(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 31.3K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/primitives/Floats.java

       *
       * <p>Prefer {@link Float#BYTES} instead.
       *
       * @since 10.0
       */
      public static final int BYTES = Float.BYTES;
    
      /**
       * Returns a hash code for {@code value}; obsolete alternative to {@link Float#hashCode(float)}.
       *
       * @param value a primitive {@code float} value
       * @return a hash code for the value
       */
      @InlineMe(replacement = "Float.hashCode(value)")
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 25.6K bytes
    - Click Count (0)
  9. docs/ko/docs/tutorial/query-params-str-validations.md

    ///
    
    이제 FastAPI는 다음을 수행합니다:
    
    * 최대 길이가 50자인지 확인하도록 데이터를 **검증**합니다
    * 데이터가 유효하지 않을 때 클라이언트에게 **명확한 오류**를 보여줍니다
    * OpenAPI 스키마 *경로 처리*에 매개변수를 **문서화**합니다(따라서 **자동 문서 UI**에 표시됩니다)
    
    ## 대안(이전 방식): 기본값으로 `Query` 사용 { #alternative-old-query-as-the-default-value }
    
    이전 FastAPI 버전(<dfn title="2023-03 이전">0.95.0</dfn> 이전)에서는 `Annotated`에 넣는 대신, 매개변수의 기본값으로 `Query`를 사용해야 했습니다. 주변에서 이 방식을 사용하는 코드를 볼 가능성이 높기 때문에 설명해 드리겠습니다.
    
    /// tip | 팁
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/base/Converter.java

     *       be overridden.
     * </ul>
     *
     * <h3>Example</h3>
     *
     * {@snippet :
     * return Converter.from(
     *     Integer::toHexString,
     *     s -> parseUnsignedInt(s, 16));
     * }
     *
     * <p>An alternative using a subclass:
     *
     * {@snippet :
     * return new Converter<Integer, String>() {
     *   @Override
     *   protected String doForward(Integer i) {
     *     return Integer.toHexString(i);
     *   }
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jun 18 21:43:06 GMT 2025
    - 22.8K bytes
    - Click Count (0)
Back to Top