- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 542 for INSTALL (0.04 sec)
-
docs/es/docs/advanced/websockets.md
## Instalar `websockets` { #install-websockets } Asegรบrate de crear un [entorno virtual](../virtual-environments.md){.internal-link target=_blank}, activarlo e instalar `websockets` (un paquete de Python que facilita usar el protocolo "WebSocket"): <div class="termy"> ```console $ pip install websockets ---> 100% ``` </div>Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 5.9K bytes - Viewed (0) -
docs/bucket/replication/test_del_marker_proxying.sh
pkill -9 minio || sudo pkill -9 minio rm -rf /tmp/sitea rm -rf /tmp/siteb echo "done" } cleanup export MINIO_CI_CD=1 export MINIO_BROWSER=off make install-race # Start MinIO instances echo -n "Starting MinIO instances ..." minio server --address 127.0.0.1:9001 --console-address ":10000" "http://127.0.0.1:9001/tmp/sitea/data/disterasure/xl{1...4}" \
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/BuilderCommonTest.java
+ "stub-plugin-test-compile, " + "stub-plugin-test, " + "stub-plugin-package, " + "stub-plugin-install], " + "you should define versions in pluginManagement section of your pom.xml or parent"); } @Test void testHandleBuildError() throws Exception {} @TestRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/distributed/decom-encrypted-kes.sh
fi if [ ! -f ./kes ]; then wget --quiet -O kes https://github.com/minio/kes/releases/latest/download/kes-linux-amd64 && chmod +x kes fi if ! openssl version &>/dev/null; then apt install openssl || sudo apt install opensssl fi # Start KES Server (./kes server --dev 2>&1 >kes-server.log) & kes_pid=$! sleep 5s API_KEY=$(grep "API Key" <kes-server.log | awk -F" " '{print $3}')
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 7.1K bytes - Viewed (1) -
docs/de/docs/deployment/docker.md
/// <details> <summary>Dockerfile-Vorschau ๐</summary> ```Dockerfile FROM python:3.9 WORKDIR /code COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY ./app /code/app CMD ["fastapi", "run", "app/main.py", "--port", "80"] # Wenn Sie hinter einem Proxy wie Nginx oder Traefik sind, fรผgen Sie --proxy-headers hinzu
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 17:32:56 UTC 2025 - 33.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/request-form-models.md
Certifique-se de criar um [ambiente virtual](../virtual-environments.md){.internal-link target=_blank}, ativรก-lo, e entรฃo instalar. Por exemplo: ```console $ pip install python-multipart ``` /// /// note | Nota Isto รฉ suportado desde a versรฃo `0.113.0` do FastAPI. ๐ค /// ## Modelos Pydantic para Formulรกrios { #pydantic-models-for-forms }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 2.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/testing.md
[virtual environment](../virtual-environments.md){.internal-link target=_blank} ๋ฅผ ๋ง๋ค๊ณ , ํ์ฑํ ์ํจ ๋ค์ ์ค์นํ์ธ์. ์์: ```console $ pip install httpx ``` /// `TestClient` ๋ฅผ ์ํฌํธํ์ธ์. **FastAPI** ์ดํ๋ฆฌ์ผ์ด์ ์ ์ ๋ฌํ์ฌ `TestClient` ๋ฅผ ๋ง๋์ธ์. ์ด๋ฆ์ด `test_` ๋ก ์์ํ๋ ํจ์๋ฅผ ๋ง๋์ธ์(`pytest` ์ ํ์ค์ ์ธ ๊ด๋ก์ ๋๋ค). `httpx` ๋ฅผ ์ฌ์ฉํ๋ ๊ฒ๊ณผ ๊ฐ์ ๋ฐฉ์์ผ๋ก `TestClient` ๊ฐ์ฒด๋ฅผ ์ฌ์ฉํ์ธ์.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 17:48:49 UTC 2025 - 7.6K bytes - Viewed (0) -
tests/tests_test.go
if dbDSN == "" { dbDSN = gaussdbDSN } db, err = gorm.Open(gaussdb.New(gaussdb.Config{ DSN: dbDSN, PreferSimpleProtocol: true, }), cfg) case "sqlserver": // go install github.com/microsoft/go-sqlcmd/cmd/sqlcmd@latest // SQLCMDPASSWORD=LoremIpsum86 sqlcmd -U sa -S localhost:9930 // CREATE DATABASE gorm; // GO // CREATE LOGIN gorm WITH PASSWORD = 'LoremIpsum86';Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 3.7K bytes - Viewed (0) -
architecture/standards/0007-java-pre-requisite.md
2024-12-20 ## Context ### Embedding a Java runtime in the Gradle distribution There have been discussions on embedding a Java runtime in the Gradle distribution. This would allow users to run Gradle without having to install a Java runtime beforehand. This capability could help increase Gradle adoption outside of the JVM ecosystem. Gradle can be invoked in different ways:
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Jan 07 08:44:20 UTC 2025 - 3.3K bytes - Viewed (0) -
docs/ko/docs/tutorial/request-form-models.md
[๊ฐ์ ํ๊ฒฝ](../virtual-environments.md){.internal-link target=_blank}์ ์์ฑํ๊ณ ํ์ฑํํ ๋ค์, ์๋์ ๊ฐ์ด ์ค์นํ ์ ์์ต๋๋ค: ```console $ pip install python-multipart ``` /// /// note | ์ฐธ๊ณ ์ด ๊ธฐ๋ฅ์ FastAPI ๋ฒ์ `0.113.0` ์ดํ๋ถํฐ ์ง์๋ฉ๋๋ค. ๐ค /// ## Pydantic ๋ชจ๋ธ์ ์ฌ์ฉํ ํผ **ํผ ํ๋**๋ก ๋ฐ๊ณ ์ถ์ ํ๋๋ฅผ **Pydantic ๋ชจ๋ธ**๋ก ์ ์ธํ ๋ค์, ๋งค๊ฐ๋ณ์๋ฅผ `Form`์ผ๋ก ์ ์ธํ๋ฉด ๋ฉ๋๋ค:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Dec 09 12:44:27 UTC 2024 - 2.3K bytes - Viewed (0)