- Sort Score
- Result 10 results
- Languages All
Results 2301 - 2310 of 2,557 for False (0.02 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
*/ protected class MappingUpdater implements Closeable { /** Flag indicating whether changes should be committed to the file. */ protected boolean isCommit = false; /** Temporary file used for writing updates before committing. */ protected File newFile; /** Writer for outputting content to the temporary file. */ protected Writer writer;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
for (int i = 0; i < 8; mask <<= 8, i++) { sink[offset + i] = (byte) ((value & mask) >> (i * 8)); } } @Override public boolean usesFastPath() { return false; } } } static LittleEndianBytes makeGetter() { LittleEndianBytes usingVarHandle = VarHandleLittleEndianBytesMaker.INSTANCE.tryMakeVarHandleLittleEndianBytes();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
docs/em/docs/advanced/behind-a-proxy.md
/// tip ๐ฉบ ๐ ๐ ๐ โฎ๏ธ ๐ฝ ๐ ๐ ๐. /// ### โ ๐ง ๐ฝ โช๏ธโก๏ธ `root_path` ๐ฅ ๐ ๐ซ ๐ **FastAPI** ๐ ๐ง ๐ฝ โ๏ธ `root_path`, ๐ ๐ช โ๏ธ ๐ข `root_path_in_servers=False`: {* ../../docs_src/behind_a_proxy/tutorial004.py hl[9] *} & โคด๏ธ โซ๏ธ ๐ ๐ซ ๐ โซ๏ธ ๐ ๐. ## ๐ ๐ง-๐ธRegistered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10K bytes - Viewed (0) -
docs/en/docs/tutorial/security/simple-oauth2.md
Now use the operation `GET` with the path `/users/me`. You will get your user's data, like: ```JSON { "username": "johndoe", "email": "******@****.***", "full_name": "John Doe", "disabled": false, "hashed_password": "fakehashedsecret" } ``` <img src="/img/tutorial/security/image06.png"> If you click the lock icon and logout, and then try the same operation again, you will get an HTTP 401 error of:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.4K bytes - Viewed (0) -
cmd/prepare-storage.go
// Attempt to load all `format.json` from all disks. formatConfigs, sErrs := loadFormatErasureAll(storageDisks, false) if err := checkDiskFatalErrs(sErrs); err != nil { return nil, err } for i, err := range sErrs { if err != nil && !errors.Is(err, errXLBackend) && !errors.Is(err, errUnformattedDisk) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 11.1K bytes - Viewed (1) -
cmd/erasure-healing-common.go
if errs[i] != nil { metaErrs[i] = errs[i] continue } if onlineDisks[i] == OfflineDisk { metaErrs[i] = errDiskNotFound continue } meta := partsMetadata[i] corrupted := false if filterByETag { corrupted = meta.Metadata["etag"] != latestMeta.Metadata["etag"] } else { corrupted = !meta.ModTime.Equal(latestMeta.ModTime) || meta.DataDir != latestMeta.DataDir }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 12K bytes - Viewed (0) -
okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt
logger.log(headers.name(i) + ": " + value) } private fun bodyHasUnknownEncoding(headers: Headers): Boolean { val contentEncoding = headers["Content-Encoding"] ?: return false return !contentEncoding.equals("identity", ignoreCase = true) && !contentEncoding.equals("gzip", ignoreCase = true) } private fun bodyIsStreaming(response: Response): Boolean {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 14:27:04 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
this.analyzer = analyzer; } /** * Sets whether to allow leading wildcards in query terms. * * @param allowLeadingWildcard true to allow leading wildcards, false otherwise */ public void setAllowLeadingWildcard(final boolean allowLeadingWildcard) { this.allowLeadingWildcard = allowLeadingWildcard; } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CloserTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 11.8K bytes - Viewed (0) -
docs/en/docs/advanced/path-operation-advanced-configuration.md
/// ## Exclude from OpenAPI { #exclude-from-openapi } To exclude a *path operation* from the generated OpenAPI schema (and thus, from the automatic documentation systems), use the parameter `include_in_schema` and set it to `False`: {* ../../docs_src/path_operation_advanced_configuration/tutorial003.py hl[6] *} ## Advanced description from docstring { #advanced-description-from-docstring }Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.8K bytes - Viewed (0)