- Sort Score
- Result 10 results
- Languages All
Results 1541 - 1550 of 2,055 for must (0.09 sec)
-
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
If you raise any exception, it will be passed to the dependencies with yield, including `HTTPException`. In most cases you will want to re-raise that same exception or a new one from the dependency with `yield` to make sure it's properly handled. /// ## Dependencies with `yield`, `HTTPException`, `except` and Background Tasks /// warning You most probably don't need these technical details, you can skip this section and continue below.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt
} fun assumeNotCorretto() { assumeTrue(getPlatformSystemProperty() != CORRETTO_PROPERTY) } fun assumeNotBouncyCastle() { // Most failures are with MockWebServer // org.bouncycastle.tls.TlsFatalAlertReceived: handshake_failure(40) // at org.bouncycastle.tls.TlsProtocol.handleAlertMessage(TlsProtocol.java:241)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 15.3K bytes - Viewed (0) -
docs/features/https.md
println(response.body!!.string()) } } /** * Returns an input stream containing one or more certificate PEM files. This implementation just * embeds the PEM files in Java strings; most applications will instead read this from a resource * file that gets bundled with the application. */ private fun trustedCertificatesInputStream(): InputStream {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 24 00:16:30 UTC 2022 - 10.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableCollection.java
/** * A {@link Collection} whose contents will never change, and which offers a few additional * guarantees detailed below. * * <p><b>Warning:</b> avoid <i>direct</i> usage of {@link ImmutableCollection} as a type (just as * with {@link Collection} itself). Prefer subtypes such as {@link ImmutableSet} or {@link * ImmutableList}, which have well-defined {@link #equals} semantics, thus avoiding a common source * of bugs and confusion. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Aug 12 16:59:15 UTC 2024 - 18.8K bytes - Viewed (0) -
android/guava/src/com/google/common/io/ByteSource.java
return (in instanceof BufferedInputStream) ? (BufferedInputStream) in : new BufferedInputStream(in); } /** * Returns a view of a slice of this byte source that is at most {@code length} bytes long * starting at the given {@code offset}. If {@code offset} is greater than the size of this * source, the returned source will be empty. If {@code offset + length} is greater than the size
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 26.2K bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
constraints.Future.message = {item} muss in der Zukunft liegen. constraints.Max.message = {item} muss kleiner oder gleich {value} sein. constraints.Min.message = {item} muss größer oder gleich {value} sein. constraints.NotNull.message = {item} darf nicht leer sein. constraints.Null.message = {item} muss leer sein. constraints.Past.message = {item} muss in der Vergangenheit liegen.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 29 15:01:03 UTC 2019 - 11.8K bytes - Viewed (0) -
cmd/erasure-healing-common.go
inconsistent++ } } } erasureDistributionReliable := true if inconsistent > len(partsMetadata)/2 { // If there are too many inconsistent files, then we can't trust erasure.Distribution (most likely // because of bugs found in CopyObject/PutObjectTags) https://github.com/minio/minio/pull/10772 erasureDistributionReliable = false } metaErrs := make([]error, len(errs))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 12.7K bytes - Viewed (0) -
cni/pkg/nodeagent/ztunnelserver.go
return z.listener.Close() } func (z *ztunnelServer) Run(ctx context.Context) { context.AfterFunc(ctx, func() { _ = z.Close() }) // Allow at most 5 requests per second. This is still a ridiculous amount; at most we should have 2 ztunnels on our node, // and they will only connect once and persist. // However, if they do get in a state where they call us in a loop, we will quickly OOM
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 16:08:35 UTC 2024 - 13.2K bytes - Viewed (0) -
ci/official/debug_tfci.sh
# limitations under the License. # ============================================================================== # This script dumps some information about the environment. It's most useful # for verifying changes to the TFCI scripts system, and most users won't need # to interact with it at all. source "${BASH_SOURCE%/*}/utilities/setup.sh" echo "==TFCI== env outside of tfrun:" env echo "==TFCI== env inside of tfrun:"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Nov 01 19:54:25 UTC 2023 - 1022 bytes - Viewed (0) -
docs/en/docs/tutorial/security/get-current-user.md
Do you want to just have a `str`? Or just a `dict`? Or a database class model instance directly? It all works the same way. You actually don't have users that log in to your application but robots, bots, or other systems, that have just an access token? Again, it all works the same.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.4K bytes - Viewed (0)