- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 1,182 for was (0.02 sec)
-
cmd/erasure-healing.go
// always check first. return true, errLegacyXLMeta } if !latestMeta.Equals(meta) { return true, errOutdatedXLMeta } if !meta.Deleted && !meta.IsRemote() { // If xl.meta was read fine but there may be problem with the part.N files. for _, partErr := range partsErrs { if slices.Contains([]int{ checkPartFileNotFound, checkPartFileCorrupt, }, partErr) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 02 17:50:41 UTC 2024 - 34.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java
assertThrows(ExecutionException.class, () -> cacheChecked.getAll(asList(new Object()))); assertThat(caughtEe).hasCauseThat().isSameInstanceAs(ee); } @AndroidIncompatible // Bug? expected:<1> but was:<2> public void testConcurrentLoading() throws InterruptedException { testConcurrentLoading(CacheBuilder.newBuilder()); } private static void testConcurrentLoading(CacheBuilder<Object, Object> builder)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 86.3K bytes - Viewed (0) -
doc/go_spec.html
<a href="#Close"><code>close</code></a>. The multi-valued assignment form of the <a href="#Receive_operator">receive operator</a> reports whether a received value was sent before the channel was closed. </p> <p> A single channel may be used in <a href="#Send_statements">send statements</a>, <a href="#Receive_operator">receive operations</a>, and calls to the built-in functions
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
cmd/object-handlers_test.go
compressEnabled := globalCompressConfig.Enabled globalCompressConfigMu.Unlock() if compressEnabled && !r.ObjInfo.IsCompressed() { t.Errorf("Test %s: object found to be uncompressed though compression was enabled", instanceType) } } // Wrapper for calling Copy Object Part API handler tests for both Erasure multiple disks and single node setup. func TestAPICopyObjectPartHandler(t *testing.T) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 20:10:44 UTC 2024 - 163.2K bytes - Viewed (0) -
docs/zh/docs/async.md
return burgers ``` 使用 `async def`,Python 就知道在该函数中,它将遇上 `await`,并且它可以"暂停" ⏸ 执行该函数,直至执行其他操作 🔀 后回来。 当你想调用一个 `async def` 函数时,你必须"等待"它。因此,这不会起作用: ```Python # This won't work, because get_burgers was defined with: async def burgers = get_burgers(2) ``` --- 因此,如果您使用的库告诉您可以使用 `await` 调用它,则需要使用 `async def` 创建路径操作函数 ,如: ```Python hl_lines="2-3" @app.get('/burgers') async def read_burgers():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 21.1K bytes - Viewed (0) -
doc/go_mem.html
then in the original program, the other goroutine can only observe any prior value of <code>*p</code> and <code>1</code>. In the rewritten program, the other goroutine can observe <code>2</code>, which was previously impossible. </p> <p> Not introducing data races also means not assuming that loops terminate. For example, a compiler must in general not move the accesses to <code>*p</code> or <code>*q</code>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Mar 04 15:54:42 UTC 2024 - 26.6K bytes - Viewed (0) -
guava/src/com/google/common/io/BaseEncoding.java
this.alphabet = checkNotNull(alphabet); checkArgument( paddingChar == null || !alphabet.matches(paddingChar), "Padding character %s was already in alphabet", paddingChar); this.paddingChar = paddingChar; } @Override int maxEncodedSize(int bytes) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 41.8K bytes - Viewed (0) -
cmd/endpoint.go
if cep.IsLocal && ep.IsLocal { if reflect.DeepEqual(cep, ep) { return i } } } } return -1 } // Legacy returns 'true' if the MinIO server commandline was // provided with no ellipses pattern, those are considered // legacy deployments. func (l EndpointServerPools) Legacy() bool { return len(l) == 1 && l[0].Legacy } // Add add pool endpoints
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 22:22:24 UTC 2024 - 34.2K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.send_testmail=Send TestMail labels.backup_configuration=Back Up labels.backup_name=Name labels.backup_bulk_file=Bulk File labels.backup_button_upload=Upload labels.process_time_is_exceeded=The limit of a search time was exceeded. The partial result might be displayed. labels.user_given_name=First Name labels.givenName=First Name labels.user_surname=Last Name labels.surame=Last Name labels.user_mail=E-mail labels.mail=E-mail
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
docs/bucket/notifications/README.md
} ] } } ``` This output shows that a document has been created for the event in Elasticsearch. Here we see that the document ID is the bucket and object name. In case `access` format was used, the document ID would be automatically generated by Elasticsearch. ## Publish MinIO events via Redis
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 84K bytes - Viewed (0)