Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 34 for temporary (0.11 seconds)

  1. pyproject.toml

        "docs_src/response_model/tutorial003_04_py39.py",
        "docs_src/response_model/tutorial003_04_py310.py",
        "docs_src/dependencies/tutorial013_an_py310.py",  # temporary code example?
        "docs_src/dependencies/tutorial014_an_py310.py",  # temporary code example?
        # Pydantic v1 migration, no longer tested
        "docs_src/pydantic_v1_in_v2/tutorial001_an_py310.py",
        "docs_src/pydantic_v1_in_v2/tutorial002_an_py310.py",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 12:36:49 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java

      static final HashFunction MURMUR3_32_FIXED =
          new Murmur3_32HashFunction(0, /* supplementaryPlaneFix= */ true);
    
      // We can include the non-BMP fix here because Hashing.goodFastHash stresses that the hash is a
      // temporary-use one. Therefore it shouldn't be persisted.
      static final HashFunction GOOD_FAST_HASH_32 =
          new Murmur3_32HashFunction(GOOD_FAST_HASH_SEED, /* supplementaryPlaneFix= */ true);
    
      private static final int CHUNK_SIZE = 4;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return System.getProperty(Constants.FESS_LLM_LOG_LEVEL, Level.INFO.toString());
        }
    
        /**
         * Creates a temporary file.
         *
         * @param prefix The prefix for the file name.
         * @param suffix The suffix for the file name.
         * @return The created temporary file.
         * @throws IORuntimeException if the file cannot be created.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/advanced/custom-response.md

    但如果你宣告了回應模型或回傳型別,將會直接用它來把資料序列化為 JSON,並直接回傳具有正確 JSON media type 的回應,而不會使用 `JSONResponse` 類別。
    
    這是取得最佳效能的理想方式。
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    回傳一個 HTTP 重新導向。預設使用 307 狀態碼(Temporary Redirect)。
    
    你可以直接回傳 `RedirectResponse`:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    或者你可以在 `response_class` 參數中使用它:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  5. docs/de/docs/advanced/custom-response.md

    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    Gibt eine HTTP-Weiterleitung (HTTP-Redirect) zurück. Verwendet standardmäßig den Statuscode 307 – Temporäre Weiterleitung (Temporary Redirect).
    
    Sie können eine `RedirectResponse` direkt zurückgeben:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  6. docs/tr/docs/advanced/custom-response.md

    Bu, en iyi performansı elde etmenin ideal yoludur.
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    HTTP redirect döndürür. Varsayılan olarak 307 status code (Temporary Redirect) kullanır.
    
    `RedirectResponse`’u doğrudan döndürebilirsiniz:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Veya `response_class` parametresi içinde kullanabilirsiniz:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  7. docs/fr/docs/advanced/custom-response.md

    C'est la manière idéale d'obtenir la meilleure performance.
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    Renvoie une redirection HTTP. Utilise par défaut un code d'état 307 (Temporary Redirect).
    
    Vous pouvez renvoyer directement une `RedirectResponse` :
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  8. docs/ru/docs/advanced/custom-response.md

    Это идеальный способ получить наилучшую производительность.
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    Возвращает HTTP-редирект. По умолчанию использует статус-код 307 (Temporary Redirect — временное перенаправление).
    
    Вы можете вернуть `RedirectResponse` напрямую:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 17.6K bytes
    - Click Count (0)
  9. docs/uk/docs/advanced/custom-response.md

    Це ідеальний спосіб отримати найкращу продуктивність.
    
    ///
    
    ### `RedirectResponse` { #redirectresponse }
    
    Повертає HTTP-перенаправлення. Типово використовує код статусу 307 (Temporary Redirect).
    
    Ви можете повернути `RedirectResponse` безпосередньо:
    
    {* ../../docs_src/custom_response/tutorial006_py310.py hl[2,9] *}
    
    ---
    
    Або ви можете використати його в параметрі `response_class`:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17K bytes
    - Click Count (0)
  10. src/main/resources/fess_config.properties

    processors=0
    # Path to Java command.
    java.command.path=java
    # Path to Python command.
    python.command.path=python
    # Encoding for file paths.
    path.encoding=UTF-8
    # Whether to use a dedicated temporary directory.
    use.own.tmp.dir=true
    # Maximum length of log output.
    max.log.output.length=4000
    # Adaptive load control value.
    adaptive.load.control=50
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
Back to Top