- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,494 for checkEq (0.05 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
HTTP_TEMP_REDIRECT, -> { // These codes can only be cached with the right response headers. // http://tools.ietf.org/html/rfc7234#section-3 // s-maxage is not checked because OkHttp is a private cache that should ignore s-maxage. if (response.header("Expires") == null && response.cacheControl.maxAgeSeconds == -1 && !response.cacheControl.isPublic &&
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
src/archive/tar/reader.go
nb = 0 } if nb < 0 { return ErrHeader } tr.pad = blockPadding(nb) tr.curr = ®FileReader{r: tr.r, nb: nb} return nil } // handleSparseFile checks if the current file is a sparse format of any type // and sets the curr reader appropriately. func (tr *Reader) handleSparseFile(hdr *Header, rawHdr *block) error { var spd sparseDatas var err error
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Mar 08 01:59:14 UTC 2024 - 26.8K bytes - Viewed (0) -
docs/em/docs/advanced/advanced-dependencies.md
& π π π₯ πͺ "π" π π, π π βοΈ `"bar"` π β«οΈ, π’ `checker.fixed_content`. ## βοΈ π π ‴οΈ, π₯ πͺ βοΈ π `checker` `Depends(checker)`, β©οΈ `Depends(FixedContentQueryChecker)`, β©οΈ π π, `checker`, π« π β«οΈ. & πβ β π, **FastAPI** π π€ π `checker` π: ```Python checker(q="somequery") ``` ...& πΆββοΈ β«οΈβ π π¨ π² π π *β‘ π οΈ π’* π’ `fixed_content_included`:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.9K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java
@Override @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations public <T extends @Nullable Object> T[] toArray(T[] other) { return ObjectArrays.toArrayImpl(this, other); } @Override public boolean contains(@Nullable Object object) { try { // This set never contains null. We need to explicitly check here
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 15.5K bytes - Viewed (0) -
cmd/endpoint-ellipses.go
for y != 0 { x, y = y, x%y } return x } result = totalSizes[0] for i := 1; i < len(totalSizes); i++ { result = gcd(result, totalSizes[i]) } return result } // isValidSetSize - checks whether given count is a valid set size for erasure coding. var isValidSetSize = func(count uint64) bool { return (count >= setSizes[0] && count <= setSizes[len(setSizes)-1]) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java
* timeoutFuture can be set (and delegate cancelled) only once. (And "set only once" is * important for other reasons: run() can still be invoked concurrently in different threads, * even with the above null checks.) */ timeoutFutureRef = null; if (delegate.isDone()) { timeoutFuture.setFuture(delegate); } else { try {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
} finally { super.finalize(); } } private void emergencyReleaseHandle() { try { // Force release the handle with null checks if (this.usageCount != null) { this.usageCount.set(0); } // Clear references to prevent memory leaks try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
docs/es/docs/advanced/advanced-dependencies.md
## Usar la instance como una dependencia Luego, podrΓamos usar este `checker` en un `Depends(checker)`, en lugar de `Depends(FixedContentQueryChecker)`, porque la dependencia es la instance, `checker`, no la clase en sΓ. Y al resolver la dependencia, **FastAPI** llamarΓ‘ a este `checker` asΓ: ```Python checker(q="somequery") ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/ko/docs/advanced/advanced-dependencies.md
{* ../../docs_src/dependencies/tutorial011_an_py39.py hl[18] *} μ΄λ κ² νλ©΄ `checker.fixed_content` μμ±μ `"bar"`λΌλ κ°μ λ΄μ μμ‘΄μ±μ "λ§€κ°λ³μν"ν μ μμ΅λλ€. ## μΈμ€ν΄μ€λ₯Ό μμ‘΄μ±μΌλ‘ μ¬μ©νκΈ° κ·Έλ° λ€μ, `Depends(FixedContentQueryChecker)` λμ `Depends(checker)`μμ μ΄ `checker` μΈμ€ν΄μ€λ₯Ό μ¬μ©ν μ μμΌλ©°, ν΄λμ€ μμ²΄κ° μλ μΈμ€ν΄μ€ `checker`κ° μμ‘΄μ±μ΄ λ©λλ€. μμ‘΄μ±μ ν΄κ²°ν λ **FastAPI**λ μ΄ `checker`λ₯Ό λ€μκ³Ό κ°μ΄ νΈμΆν©λλ€: ```Python checker(q="somequery") ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.9K bytes - Viewed (0) -
cmd/server_test.go
endPoint string accessKey string secretKey string signer signerType secure bool client *http.Client } type check struct { *testing.T testType string } // Assert - checks if gotValue is same as expectedValue, if not fails the test. func (c *check) Assert(gotValue any, expectedValue any) { c.Helper() if !reflect.DeepEqual(gotValue, expectedValue) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118.1K bytes - Viewed (0)