- Sort Score
- Result 10 results
- Languages All
Results 1031 - 1040 of 1,054 for Spread (0.12 sec)
-
api/go1.13.txt
pkg syscall (netbsd-arm64-cgo), const CLONE_VM = 256 pkg syscall (netbsd-arm64-cgo), const CLONE_VM ideal-int pkg syscall (netbsd-arm64-cgo), const CREAD = 2048 pkg syscall (netbsd-arm64-cgo), const CREAD ideal-int pkg syscall (netbsd-arm64-cgo), const CS5 = 0 pkg syscall (netbsd-arm64-cgo), const CS5 ideal-int pkg syscall (netbsd-arm64-cgo), const CS6 = 256
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.6.md
* Fix false positive "meaningful conflict" detection for strategic merge patch with integer values. ([#44788](https://github.com/kubernetes/kubernetes/pull/44788), [@enisoc](https://github.com/enisoc)) * Fix insufficient permissions to read/write volumes when mounting them with a subPath. ([#43775](https://github.com/kubernetes/kubernetes/pull/43775), [@wongma7](https://github.com/wongma7))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 304K bytes - Viewed (0) -
cmd/sts-handlers_test.go
} gotBuckets := set.NewStringSet() for _, b := range accInfo.Buckets { gotBuckets.Add(b.Name) if !(b.Access.Read && b.Access.Write) { c.Fatalf("root user should have read and write access to bucket: %v", b.Name) } } shouldHaveBuckets := set.CreateStringSet(bucket2, bucket) if !gotBuckets.Equals(shouldHaveBuckets) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 23:40:37 UTC 2024 - 97.1K bytes - Viewed (0) -
cmd/erasure-sets.go
- Some unformatted - format all and return success, treat disks offline as corrupted. - Any JBOD inconsistent - return failure - Some are corrupt (missing format.json) - Any unrecognized disks - return failure No read quorum ----------------- failure for all cases. // Pseudo code for managing `format.json`. // Generic checks. if (no quorum) return error if (any disk is corrupt) return error // Always error
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 27 10:41:37 UTC 2024 - 37K bytes - Viewed (1) -
android/guava/src/com/google/common/collect/Iterators.java
* * <p>The provided iterator must support {@link Iterator#remove()} or else the returned iterator * will fail on the first call to {@code next}. The returned {@link Iterator} is also not * thread-safe. * * @param iterator the iterator to remove and return elements from * @return an iterator that removes and returns elements from the supplied iterator * @since 2.0 */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 50.3K bytes - Viewed (0) -
api/go1.1.txt
pkg syscall (darwin-386), const CFLUSH ideal-int pkg syscall (darwin-386), const CLOCAL = 32768 pkg syscall (darwin-386), const CLOCAL ideal-int pkg syscall (darwin-386), const CREAD = 2048 pkg syscall (darwin-386), const CREAD ideal-int pkg syscall (darwin-386), const CS5 = 0 pkg syscall (darwin-386), const CS5 ideal-int pkg syscall (darwin-386), const CS6 = 256 pkg syscall (darwin-386), const CS6 ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0) -
src/cmd/cgo/gcc.go
c = append(c, gccMachine()...) if goos == "aix" { c = append(c, "-maix64") c = append(c, "-mcmodel=large") } // disable LTO so we get an object whose symbols we can read c = append(c, "-fno-lto") c = append(c, "-") //read input from standard input return c } // gccDebug runs gcc -gdwarf-2 over the C program stdin and // returns the corresponding DWARF data and, if present, debug data block.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'indexer.thread.dump.enabled'. <br> * The value is, e.g. true <br> * comment: indexer * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexerThreadDumpEnabled(); /** * Is the property for the key 'indexer.thread.dump.enabled' true? <br> * The value is, e.g. true <br>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1) -
android/guava/src/com/google/common/collect/ImmutableMap.java
* @since 31.0 */ @SafeVarargs public static <K, V> ImmutableMap<K, V> ofEntries(Entry<? extends K, ? extends V>... entries) { @SuppressWarnings("unchecked") // we will only ever read these Entry<K, V>[] entries2 = (Entry<K, V>[]) entries; return copyOf(Arrays.asList(entries2)); } /** * Verifies that {@code key} and {@code value} are non-null, and returns a new immutable entry
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 41.5K bytes - Viewed (0) -
doc/go_spec.html
<code>E</code> [<a href="#Go_1.18">Go 1.18</a>]. </p> <pre> type Reader interface { Read(p []byte) (n int, err error) Close() error } type Writer interface { Write(p []byte) (n int, err error) Close() error } // ReadWriter's methods are Read, Write, and Close. type ReadWriter interface { Reader // includes methods of Reader in ReadWriter's method set
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0)