- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 963 for usrc (0.09 sec)
-
android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java
} public void testLinkedPutAllMultimap() { Multimap<String, Integer> src = create(); src.put("bar", 1); src.put("foo", 2); src.put("bar", 3); Multimap<String, Integer> dst = create(); dst.putAll(src); assertEquals("{bar=[1, 3], foo=[2]}", dst.toString()); assertEquals("[bar=1, foo=2, bar=3]", src.entries().toString()); } public void testLinkedReplaceValues() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18K bytes - Viewed (0) -
docs/tuning/README.md
``` wget https://raw.githubusercontent.com/minio/minio/master/docs/tuning/tuned.conf ``` #### Step 2 - install tuned.conf as supported performance profile on all nodes ``` sudo mkdir -p /usr/lib/tuned/minio/ sudo mv tuned.conf /usr/lib/tuned/minio ``` #### Step 3 - to enable minio performance profile on all the nodes ``` sudo tuned-adm profile minio
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 19 01:15:02 UTC 2024 - 644 bytes - Viewed (0) -
configure
#!/usr/bin/env bash set -e set -o pipefail if [ -z "$PYTHON_BIN_PATH" ]; then PYTHON_BIN_PATH=$(which python3 || which python || true) fi # Set all env variables CONFIGURE_DIR=$(dirname "$0") "$PYTHON_BIN_PATH" "${CONFIGURE_DIR}/configure.py" "$@"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sun Apr 12 14:04:24 UTC 2020 - 285 bytes - Viewed (0) -
docs/ja/docs/deployment/https.md
DNSサーバーは、ブラウザに特定の**IPアドレス**を使用するように指示します。このIPアドレスは、DNSサーバーで設定した、あなたのサーバーが使用するパブリックIPアドレスになります。 <img src="/img/deployment/https/https01.svg"> ### TLS Handshake の開始 ブラウザはIPアドレスと**ポート443**(HTTPSポート)で通信します。 通信の最初の部分は、クライアントとサーバー間の接続を確立し、使用する暗号鍵などを決めるだけです。 <img src="/img/deployment/https/https02.svg"> TLS接続を確立するためのクライアントとサーバー間のこのやりとりは、**TLSハンドシェイク**と呼ばれます。 ### SNI拡張機能付きのTLS
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 15.4K bytes - Viewed (0) -
docs/ja/docs/tutorial/path-operation-configuration.md
```Python hl_lines="16" {!../../docs_src/path_operation_configuration/tutorial006.py!} ``` 対話的ドキュメントでは非推奨と明記されます: <img src="https://fastapi.tiangolo.com/img/tutorial/path-operation-configuration/image04.png"> *path operations*が非推奨である場合とそうでない場合でどのように見えるかを確認してください: <img src="https://fastapi.tiangolo.com/img/tutorial/path-operation-configuration/image05.png"> ## まとめ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/de/docs/deployment/https.md
<img src="/img/deployment/https/https01.svg"> ### TLS-Handshake-Start Der Browser kommuniziert dann mit dieser IP-Adresse über **Port 443** (den HTTPS-Port). Der erste Teil der Kommunikation besteht lediglich darin, die Verbindung zwischen dem Client und dem Server herzustellen und die zu verwendenden kryptografischen Schlüssel usw. zu vereinbaren. <img src="/img/deployment/https/https02.svg">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 13.6K bytes - Viewed (0) -
docs/em/docs/tutorial/security/oauth2-jwt.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.5K bytes - Viewed (0) -
docs/tr/docs/index.md
<img src="https://github.com/fastapi/fastapi/workflows/Test/badge.svg?event=push&branch=master" alt="Test"> </a> <a href="https://coverage-badge.samuelcolvin.workers.dev/redirect/fastapi/fastapi" target="_blank"> <img src="https://coverage-badge.samuelcolvin.workers.dev/fastapi/fastapi.svg" alt="Coverage"> </a> <a href="https://pypi.org/project/fastapi" target="_blank">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 16 16:50:01 UTC 2024 - 21.9K bytes - Viewed (0) -
docs/de/docs/advanced/websockets.md
Sie sehen eine einfache Seite wie: <img src="/img/tutorial/websockets/image01.png"> Sie können Nachrichten in das Eingabefeld tippen und absenden: <img src="/img/tutorial/websockets/image02.png"> Und Ihre **FastAPI**-Anwendung mit WebSockets antwortet: <img src="/img/tutorial/websockets/image03.png"> Sie können viele Nachrichten senden (und empfangen): <img src="/img/tutorial/websockets/image04.png">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.9K bytes - Viewed (0) -
docs/pt/docs/how-to/separate-openapi-schemas.md
### Modelo de Entrada na Documentação Você pode confirmar que na documentação, o campo `description` não tem um **asterisco vermelho**, não é marcado como obrigatório: <div class="screenshot"> <img src="/img/tutorial/separate-openapi-schemas/image01.png"> </div> ### Modelo para Saída Mas se você usar o mesmo modelo como saída, como aqui: //// tab | Python 3.10+ ```Python hl_lines="19"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 24 18:52:36 UTC 2024 - 6.8K bytes - Viewed (0)