- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 731 for valide (0.04 sec)
-
docs/em/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial005.py hl[17] *} #### ๐ค *๐ข ๐ฒ* ๐ ๐ช ๐ค โ ๐ฒ ( `str` ๐ ๐ผ) โ๏ธ `model_name.value`, โ๏ธ ๐ข, `your_enum_member.value`: {* ../../docs_src/path_params/tutorial005.py hl[20] *} /// tip ๐ ๐ช ๐ ๐ฒ `"lenet"` โฎ๏ธ `ModelName.lenet.value`. /// #### ๐จ *๐ข ๐จโ๐* ๐ ๐ช ๐จ *๐ข ๐จโ๐* โช๏ธโก๏ธ ๐ *โก ๐ ๏ธ*, ๐ฆ ๐ป ๐ช (โ `dict`).Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.5K bytes - Viewed (0) -
cmd/batch-job-common-types.go
return fmt.Sprintf("%s\n Hint: error near line: %d, col: %d", b.msg, b.line, b.col) } // BatchJobKV is a key-value data type which supports wildcard matching type BatchJobKV struct { line, col int Key string `yaml:"key" json:"key"` Value string `yaml:"value" json:"value"` } var _ yaml.Unmarshaler = &BatchJobKV{}
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.9K bytes - Viewed (0) -
cmd/signature-v4-parser.go
cred.scope.region = credElements[1] // Verify if region is valid. sRegion := cred.scope.region // Region is set to be empty, we use whatever was sent by the // request and proceed further. This is a work-around to address // an important problem for ListBuckets() getting signed with // different regions. if region == "" { region = sRegion } // Should validate region, only if region is set.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 9.4K bytes - Viewed (0) -
ci/devinfra/docker/windows/Dockerfile
RUN Add-Content -Path C:\tools\msys64\etc\pacman.d\mirrorlist.mingw32 -Value 'SigLevel = Never' RUN Add-Content -Path C:\tools\msys64\etc\pacman.d\mirrorlist.mingw64 -Value 'SigLevel = Never' RUN Add-Content -Path C:\tools\msys64\etc\pacman.d\mirrorlist.msys -Value 'SigLevel = Never' # Install pacman packages. RUN C:\tools\msys64\usr\bin\bash.exe -lc \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Jan 17 16:35:57 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
assertEquals(SsoResponseType.METADATA, values[0]); assertEquals(SsoResponseType.LOGOUT, values[1]); } public void test_valueOf() { // Test valueOf for valid enum names assertEquals(SsoResponseType.METADATA, SsoResponseType.valueOf("METADATA")); assertEquals(SsoResponseType.LOGOUT, SsoResponseType.valueOf("LOGOUT")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6K bytes - Viewed (0) -
okhttp-zstd/src/test/java/okhttp3/zstd/ZstdInterceptorTest.kt
val responseString = decompressed.body.string() assertThat(responseString).isEqualTo("hello unknown algorithm world") } @Test fun testFailsDecompress() { val s = "this is not valid zstd".encodeUtf8() val response = response("https://example.com/", s) { header("Content-Encoding", "zstd") } val decompressed = zstdInterceptor.decompress(response)Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 06:04:22 UTC 2025 - 4.8K bytes - Viewed (1) -
docs/es/docs/how-to/custom-request-and-route.md
Pero este ejemplo sigue siendo vรกlido y muestra cรณmo interactuar con los componentes internos. /// Tambiรฉn podemos usar este mismo enfoque para acceder al request body en un manejador de excepciones.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 4.7K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
DirectoryCacheEntry entry = directoryCache.get(directoryPath); // Check if cache entry is valid if (entry != null && entry.needsRefresh()) { // Check if lease is still valid LeaseEntry leaseEntry = baseLeaseManager.getLease(entry.getLeaseKey()); if (leaseEntry == null || !leaseEntry.hasReadCache()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
cmd/erasure-metadata.go
} // ShardSize - returns actual shared size from erasure blockSize. func (e ErasureInfo) ShardSize() int64 { return ceilFrac(e.BlockSize, int64(e.DataBlocks)) } // IsValid - tells if erasure info fields are valid. func (fi FileInfo) IsValid() bool { if fi.Deleted { // Delete marker has no data, no need to check // for erasure coding information return true } dataBlocks := fi.Erasure.DataBlocks
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 21.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
assertNull(exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithNullMessageAndValidCause() { // Test constructor with null message and valid cause Throwable cause = new IllegalArgumentException("Invalid argument"); GsaConfigException exception = new GsaConfigException(null, cause); assertNotNull(exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0)