- Sort Score
- Num 10 results
- Language All
Results 291 - 300 of 1,790 for NOTE (0.34 seconds)
-
docs/zh-hant/docs/advanced/wsgi.md
這需要先安裝 `a2wsgi`,例如使用 `pip install a2wsgi`。 /// 你需要從 `a2wsgi` 匯入 `WSGIMiddleware`。 然後用該 middleware 包住 WSGI(例如 Flask)應用。 接著把它掛載到某個路徑下。 {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *} /// note 先前建議使用來自 `fastapi.middleware.wsgi` 的 `WSGIMiddleware`,但現在已棄用。 建議改用 `a2wsgi` 套件。用法保持相同。 只要確保已安裝 `a2wsgi`,並從 `a2wsgi` 正確匯入 `WSGIMiddleware` 即可。 /// ## 試試看 { #check-it }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 1.4K bytes - Click Count (0) -
docs/en/docs/_llm-test.md
//// tab | Test /// info Some text /// /// note Some text /// /// note | Technical details Some text /// /// check Some text /// /// tip Some text /// /// warning Some text /// /// danger Some text /// //// //// tab | Info
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 11K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/cookie-params.md
## 宣告 `Cookie` 參數 { #declare-cookie-parameters } 然後用與 `Path`、`Query` 相同的結構宣告 `Cookie` 參數。 你可以設定預設值,以及所有額外的驗證或註解參數: {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[9] *} /// note | 技術細節 `Cookie` 是 `Path` 與 `Query` 的「姊妹」類別。它同樣繼承自共同的 `Param` 類別。 但請記住,當你從 `fastapi` 匯入 `Query`、`Path`、`Cookie` 等時,它們實際上是回傳特殊類別的函式。 /// /// infoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 1.5K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE.md
--- name: Bug report about: Create a report to help us improve title: '' labels: community, triage assignees: '' --- ## NOTE All GitHub issues are addressed on a best-effort basis at MinIO's sole discretion. There are no Service Level Agreements (SLA) or Objectives (SLO). Remember our [Code of Conduct](https://github.com/minio/minio/blob/master/code_of_conduct.md) when engaging with MinIO Engineers and the larger community.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sat Jan 29 00:04:16 GMT 2022 - 2K bytes - Click Count (0) -
docs/en/docs/advanced/additional-responses.md
For example, to declare another response with a status code `404` and a Pydantic model `Message`, you can write: {* ../../docs_src/additional_responses/tutorial001_py310.py hl[18,22] *} /// note Keep in mind that you have to return the `JSONResponse` directly. /// /// info The `model` key is not part of OpenAPI.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/zh/docs/advanced/wsgi.md
需要安装 `a2wsgi`,例如使用 `pip install a2wsgi`。 /// 您需要从 `a2wsgi` 导入 `WSGIMiddleware`。 然后使用该中间件包装 WSGI 应用(例如 Flask)。 之后将其挂载到某一个路径下。 {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *} /// note | 注意 之前推荐使用 `fastapi.middleware.wsgi` 中的 `WSGIMiddleware`,但它现在已被弃用。 建议改用 `a2wsgi` 包,使用方式保持不变。 只要确保已安装 `a2wsgi` 包,并且从 `a2wsgi` 正确导入 `WSGIMiddleware` 即可。 /// ## 检查 { #check-it }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 1.4K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/Ints.java
public static int hashCode(int value) { return value; } /** * Returns the {@code int} value that is equal to {@code value}, if possible. * * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Use {@link * Math#toIntExact(long)} instead, but be aware that that method throws {@link * ArithmeticException} rather than {@link IllegalArgumentException}.
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) -
src/buildall.bash
# put linux first in the target list to get all the architectures up front. linux_targets() { selectedtargets | grep 'linux' | sort } non_linux_targets() { selectedtargets | grep -v 'linux' | sort } # Note words in $targets are separated by both newlines and spaces. targets="$(linux_targets) $(non_linux_targets)" failed=false for target in $targets do echo "" echo "### Building $target"Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Apr 23 17:45:23 GMT 2024 - 2.1K bytes - Click Count (0) -
docs/bucket/notifications/README.md
notify_postgres publish bucket notifications to Postgres databases notify_elasticsearch publish bucket notifications to Elasticsearch endpoints notify_redis publish bucket notifications to Redis datastores ``` > NOTE: > > - '\*' at the end of arg means its mandatory. > - '\*' at the end of the values, means its the default value for the arg.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 84.2K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/FluentFuture.java
* // counters. * ListenableFuture<Integer> faultTolerantFuture = * fetchCounters().catching(FetchException.class, x -> 0, directExecutor()); * } * * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See * the discussion in the {@link #addListener} documentation. All its warnings about heavyweight
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 19.8K bytes - Click Count (0)