- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 877 for command (0.28 sec)
-
docs/em/docs/tutorial/dependencies/classes-as-dependencies.md
<img src="/img/tutorial/dependencies/image02.png"> ## โจ โ๏ธ ๐ ๐ ๐ ๐ฅ โ๏ธ ๐ ๐ ๐ฅ, โ `CommonQueryParams` ๐: ```Python commons: CommonQueryParams = Depends(CommonQueryParams) ``` **FastAPI** ๐ โจ ๐ซ ๐ผ, ๐โ ๐ *๐ฏ* ๐ ๐ **FastAPI** ๐ "๐ค" โ ๐ ๐ โซ๏ธ. ๐ ๐ฏ ๐ผ, ๐ ๐ช ๐: โฉ๏ธ โ: ```Python
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
import java.util.regex.Pattern; import org.apache.commons.io.ByteOrderMark; import org.apache.commons.io.input.BOMInputStream; import org.apache.commons.text.translate.AggregateTranslator; import org.apache.commons.text.translate.CharSequenceTranslator; import org.apache.commons.text.translate.EntityArrays; import org.apache.commons.text.translate.LookupTranslator; import org.apache.commons.text.translate.NumericEntityUnescaper;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.5K bytes - Viewed (0) -
src/archive/zip/struct.go
Name string // Comment is any arbitrary user-defined string shorter than 64KiB. Comment string // NonUTF8 indicates that Name and Comment are not encoded in UTF-8. // // By specification, the only other encoding permitted should be CP-437, // but historically many ZIP readers interpret Name and Comment as whatever // the system's local character encoding happens to be. //
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
docs/es/docs/deployment/manually.md
``` </div> /// note | Nota El comando `uvicorn main:app` se refiere a: * `main`: el archivo `main.py` (el "mรณdulo" de Python). * `app`: el objeto creado dentro de `main.py` con la lรญnea `app = FastAPI()`. Es equivalente a: ```Python from main import app ``` /// Cada programa alternativo de servidor ASGI tendrรญa un comando similar, puedes leer mรกs en su respectiva documentaciรณn.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.2K bytes - Viewed (0) -
docs/fr/docs/features.md
Tout le framework **FastAPI** a รฉtรฉ conรงu avec cela en tรชte. L'autocomplรฉtion fonctionne partout. Vous devrez rarement revenir ร la documentation. Voici comment votre รฉditeur peut vous aider: * dans <a href="https://code.visualstudio.com/" class="external-link" target="_blank">Visual Studio Code</a>: 
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.1K bytes - Viewed (0) -
docs/pt/docs/deployment/server-workers.md
Aqui mostrarei como usar o **Uvicorn** com **processos de trabalho** usando o comando `fastapi` ou o comando `uvicorn` diretamente. /// info | Informaรงรฃo
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Jan 09 20:41:07 UTC 2025 - 8.5K bytes - Viewed (0) -
docs/resiliency/resiliency-initial-script.sh
# This script will not and should not be executed in the self hosted runner echo "script failed" >resiliency-initial.log # assume initial state echo "sleep to wait for MinIO Server to be ready prior mc commands" # https://github.com/minio/mc/issues/3599 MINIO_SERVER_URL="http://127.0.0.1:9000" ALIAS_NAME=myminio BUCKET="test-bucket" SRC_DIR="/tmp/data" INLINED_DIR="/tmp/inlined" DEST_DIR="/tmp/dest" TIMEOUT=10
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Dec 21 04:24:45 UTC 2024 - 1.5K bytes - Viewed (0) -
README.md
props.setProperty("jcifs.smb.client.useLeases", "true"); Configuration config = new PropertyConfiguration(props); CIFSContext context = new BaseContext(config); ``` ## Development ### Build Commands ```bash # Compile the source code mvn compile # Build JAR file mvn package # Clean and rebuild mvn clean compile # Install to local repository mvn install ```
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
docs/sts/web-identity.md
## Configuring OpenID Identity Provider on MinIO Configuration can be performed via MinIO's standard configuration API (i.e. using `mc admin config set/get` commands) or equivalently via environment variables. For brevity we show only environment variables here: ``` $ mc admin config set myminio identity_openid --env KEY: identity_openid[:name] enable OpenID SSO support ARGS:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
{* ../../docs_src/dependencies/tutorial002.py hl[19] *} **FastAPI**๋ `CommonQueryParams` ํด๋์ค๋ฅผ ํธ์ถํฉ๋๋ค. ์ด๊ฒ์ ํด๋น ํด๋์ค์ "์ธ์คํด์ค"๋ฅผ ์์ฑํ๊ณ ๊ทธ ์ธ์คํด์ค๋ ํจ์์ ๋งค๊ฐ๋ณ์ `commons`๋ก ์ ๋ฌ๋ฉ๋๋ค. ## ํ์ ํํ vs `Depends` ์ ์ฝ๋์์ `CommonQueryParams`๋ฅผ ๋ ๋ฒ ์์ฑํ ๋ฐฉ์์ ์ฃผ๋ชฉํ์ญ์์ค: ```Python commons: CommonQueryParams = Depends(CommonQueryParams) ``` ๋ง์ง๋ง `CommonQueryParams` ๋ณ์๋ฅผ ๋ณด๋ฉด: ```Python ... = Depends(CommonQueryParams) ```Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.7K bytes - Viewed (0)