- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 532 for LIMIT (0.02 sec)
-
docs/recipes.md
String content; } ``` ### Response Caching ([.kt][CacheResponseKotlin], [.java][CacheResponseJava]) To cache responses, you'll need a cache directory that you can read and write to, and a limit on the cache's size. The cache directory should be private, and untrusted applications should not be able to read its contents!
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Feb 18 08:52:22 UTC 2022 - 40.2K bytes - Viewed (0) -
helm-releases/minio-1.0.2.tgz
.Values.configPathmc }}" MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}" {{- else }} MC="/usr/bin/mc --insecure" {{- end }} # connectToMinio # Use a check-sleep-check loop to wait for Minio service to be available connectToMinio() { SCHEME=$1 ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts set -e ; # fail if we can't read the keys. ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ; set +e ; # The connections to minio are allowed to fail. echo "Connecting to Minio server: $SCHEME://$MINIO_E...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 24 18:58:05 UTC 2021 - 13.6K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt
} val body = response.body if (body.contentLength() > MAX_RESPONSE_SIZE) { throw IOException( "response size exceeds limit ($MAX_RESPONSE_SIZE bytes): ${body.contentLength()} bytes", ) } val responseBytes = body.source().readByteString() return DnsRecordCodec.decodeAnswers(hostname, responseBytes) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Oct 31 09:27:31 UTC 2024 - 9.8K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/index.md
In this case, this dependency expects: * An optional query parameter `q` that is a `str`. * An optional query parameter `skip` that is an `int`, and by default is `0`. * An optional query parameter `limit` that is an `int`, and by default is `100`. And then it just returns a `dict` containing those values. /// info FastAPI added support for `Annotated` (and started recommending it) in version 0.95.0.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:18:17 UTC 2024 - 9.2K bytes - Viewed (0) -
docs/de/docs/tutorial/dependencies/classes-as-dependencies.md
In beiden FΓ€llen wird sie haben: * Einen optionalen `q`-Query-Parameter, der ein `str` ist. * Einen `skip`-Query-Parameter, der ein `int` ist, mit einem Defaultwert `0`. * Einen `limit`-Query-Parameter, der ein `int` ist, mit einem Defaultwert `100`. In beiden FΓ€llen werden die Daten konvertiert, validiert, im OpenAPI-Schema dokumentiert, usw. ## Verwendung
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 12K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/index.md
π πͺ π β«οΈ *β‘ π οΈ π’* π΅ "π¨βπ¨" (π΅ `@app.get("/some-path")`). & β«οΈ πͺ π¨ π³ π π. π πΌ, π π β: * π¦ π’ π’ `q` π `str`. * π¦ π’ π’ `skip` π `int`, & π’ `0`. * π¦ π’ π’ `limit` π `int`, & π’ `100`. & β€΄οΈ β«οΈ π¨ `dict` β π π². ### π `Depends` //// tab | π 3οΈβ£.6οΈβ£ & π ```Python hl_lines="3" {!> ../../docs_src/dependencies/tutorial001.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.7K bytes - Viewed (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt
}.also { expected -> assertThat(expected.message).isEqualTo("enclosed object too large") } } /** Object identifiers are nominally self-delimiting. Outrun the limit with one. */ @Test fun `variable length long outruns limit`() { val bytes = "060229ffffff7f".decodeHex() assertFailsWith<ProtocolException> { Adapters.OBJECT_IDENTIFIER.fromDer(bytes) }.also { expected ->
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 31.7K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
``` //// μ΄ λ§€κ°λ³μλ€μ **FastAPI**κ° μμ‘΄μ±μ "ν΄κ²°"νκΈ° μν΄ μ¬μ©ν κ²μ λλ€ ν¨μμ ν΄λμ€ λ κ°μ§ λ°©μ λͺ¨λ, μλ μμλ₯Ό κ°μ΅λλ€: * `λ¬Έμμ΄`μ΄λ©΄μ μ νμ¬νμΈ μΏΌλ¦¬ 맀κ°λ³μ `q`. * κΈ°λ³Έκ°μ΄ `0`μ΄λ©΄μ `μ μν`μΈ μΏΌλ¦¬ 맀κ°λ³μ `skip` * κΈ°λ³Έκ°μ΄ `100`μ΄λ©΄μ `μ μν`μΈ μΏΌλ¦¬ 맀κ°λ³μ `limit` λ κ°μ§ λ°©μ λͺ¨λ, λ°μ΄ν°λ λ³ν, κ²μ¦λκ³ OpenAPI μ€ν€λ§μ λ¬Έμνλ©λλ€. ## μ¬μ©ν΄λ΄ μλ€! μ΄μ μλμ ν΄λμ€λ₯Ό μ΄μ©ν΄μ μμ‘΄μ±μ μ μν μ μμ΅λλ€. //// tab | νμ΄μ¬ 3.6 μ΄μ ```Python hl_lines="19"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.9K bytes - Viewed (0) -
helm-releases/minio-3.1.0.tgz
.Values.configPathmc }}" MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}" {{- else }} MC="/usr/bin/mc --insecure" {{- end }} # connectToMinio # Use a check-sleep-check loop to wait for Minio service to be available connectToMinio() { SCHEME=$1 ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts set -e ; # fail if we can't read the keys. ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ; set +e ; # The connections to minio are allowed to fail. echo "Connecting to Minio server: $SCHEME://$MINIO_E...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 12 18:19:27 UTC 2021 - 14.3K bytes - Viewed (0) -
helm-releases/minio-3.1.1.tgz
.Values.configPathmc }}" MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}" {{- else }} MC="/usr/bin/mc --insecure" {{- end }} # connectToMinio # Use a check-sleep-check loop to wait for Minio service to be available connectToMinio() { SCHEME=$1 ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts set -e ; # fail if we can't read the keys. ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ; set +e ; # The connections to minio are allowed to fail. echo "Connecting to Minio server: $SCHEME://$MINIO_E...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 13 16:43:10 UTC 2021 - 14.3K bytes - Viewed (0)