- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 230 for noImpl (0.05 sec)
-
cmd/notification.go
// 'freeze' is 'false' would resume all S3 API calls again. // NOTE: once a tenant is frozen either two things needs to // happen before resuming normal operations. // - Server needs to be restarted 'mc admin service restart' // - 'freeze' should be set to 'false' for this call // to resume normal operations. func (sys *NotificationSys) ServiceFreeze(ctx context.Context, freeze bool) []NotificationPeerErr { serviceSig := serviceUnFreeze
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 46.2K bytes - Viewed (0) -
guava/src/com/google/common/base/Throwables.java
/** * Returns the stack trace of {@code throwable}, possibly providing slower iteration over the full * trace but faster iteration over parts of the trace. Here, "slower" and "faster" are defined in * comparison to the normal way to access the stack trace, {@link Throwable#getStackTrace() * throwable.getStackTrace()}. Note, however, that this method's special implementation is not
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 20.7K bytes - Viewed (0) -
src/bufio/bufio_test.go
} } func TestUnreadRune(t *testing.T) { segments := []string{"Hello, world:", "日本語"} r := NewReader(&StringReader{data: segments}) got := "" want := strings.Join(segments, "") // Normal execution. for { r1, _, err := r.ReadRune() if err != nil { if err != io.EOF { t.Error("unexpected error on ReadRune:", err) } break } got += string(r1)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Nov 01 21:52:12 UTC 2024 - 51.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multiset.java
* * <p>A multiset uses {@link Object#equals} to determine whether two instances should be considered * "the same," <i>unless specified otherwise</i> by the implementation. * * <p><b>Warning:</b> as with normal {@link Set}s, it is almost always a bad idea to modify an * element (in a way that affects its {@link Object#equals} behavior) while it is contained in a * multiset. Undefined behavior and bugs will result. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Jun 17 14:40:53 UTC 2023 - 19.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashSet.java
* <li>UNSET, meaning "null pointer" * <li>one plus an index into the entries and elements array * </ul> * <li>another java.util.Set delegate implementation. In most modern JDKs, normal java.util hash * collections intelligently fall back to a binary search tree if hash table collisions are * detected. Rather than going to all the trouble of reimplementing this ourselves, we
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 24.9K bytes - Viewed (0) -
cmd/object-api-utils_test.go
}, // MinIO meta bucket. { bucket: minioMetaMultipartBucket, result: true, }, // MinIO meta bucket. { bucket: minioMetaTmpBucket, result: true, }, // Normal bucket { bucket: "mybucket", result: false, }, } for i, test := range testCases { actual := isMinioMetaBucketName(test.bucket) if actual != test.result {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 24.1K bytes - Viewed (0) -
src/main/resources/suggest_indices/_cloud/suggest_analyzer.json
"number_of_replicas": 0, "auto_expand_replicas": "0-1" }, "analysis" : { "tokenizer" : { "fess_japanese_normal" : { "type" : "kuromoji_tokenizer", "mode" : "normal", "discard_punctuation" : "false" }, "fess_korean_normal": { "type": "nori_tokenizer", "decompound_mode": "mixed", "user_dictionary_rules": ["덕후", "버카충", "낄끼빠빠" ] }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Feb 27 09:26:16 UTC 2021 - 57.4K bytes - Viewed (0) -
docs/pt/docs/advanced/settings.md
{!> ../../docs_src/settings/app02/main.py!} ``` //// /// dica Vamos discutir sobre `@lru_cache` logo mais. Por enquanto, você pode considerar `get_settings()` como uma função normal. /// E então podemos declarar essas configurações como uma dependência na função de operação da rota e utilizar onde for necessário. //// tab | Python 3.9+ ```Python hl_lines="17 19-21"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 17K bytes - Viewed (0) -
cmd/streaming-signature-v4.go
// out of HTTP "chunked" format before returning it. // The s3ChunkedReader returns io.EOF when the final 0-length chunk is read. // // NewChunkedReader is not needed by normal applications. The http package // automatically decodes chunking when reading response bodies. func newSignV4ChunkedReader(req *http.Request, trailer bool) (io.ReadCloser, APIErrorCode) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu May 16 23:13:47 UTC 2024 - 18.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* List the contents of this SMB resource. The list returned by this * method will be; * * <ul> * <li>files and directories contained within this resource if the * resource is a normal disk file directory, * <li>all available NetBIOS workgroups or domains if this resource is * the top level URL <code>smb://</code>, * <li>all servers registered as members of a NetBIOS workgroup if this
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)