- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 141 for 128 (0.02 sec)
-
guava/src/com/google/common/hash/SipHashFunction.java
// The number of compression rounds. private final int c; // The number of finalization rounds. private final int d; // Two 64-bit keys (represent a single 128-bit key). private final long k0; private final long k1; /** * @param c the number of compression rounds (must be positive) * @param d the number of finalization rounds (must be positive)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 20 18:43:59 UTC 2021 - 5.3K bytes - Viewed (0) -
common-protos/k8s.io/api/resource/v1alpha2/generated.proto
// allocation is to be attempted. // +optional optional string selectedNode = 1; // PotentialNodes lists nodes where the Pod might be able to run. // // The size of this field is limited to 128. This is large enough for // many clusters. Larger clusters may need more attempts to find a node // that suits all pending resources. This may get increased in the // future, but not reduced. // // +listType=set
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 14.4K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), const IP_MAX_MEMBERSHIPS ideal-int pkg syscall (darwin-arm64), const IP_MAX_SOCK_MUTE_FILTER = 128 pkg syscall (darwin-arm64), const IP_MAX_SOCK_MUTE_FILTER ideal-int pkg syscall (darwin-arm64), const IP_MAX_SOCK_SRC_FILTER = 128 pkg syscall (darwin-arm64), const IP_MAX_SOCK_SRC_FILTER ideal-int pkg syscall (darwin-arm64), const IP_MF = 8192
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
manifests/addons/dashboards/lib/panels.libsonnet
+ options.calculation.xBuckets.withValue('1min') + options.withCellGap(0) + options.color.withMode('scheme') + options.color.withScheme('Spectral') + options.color.withSteps(128) + options.yAxis.withDecimals(0) + options.yAxis.withUnit('s') + if std.length(desc) > 0 then heatmap.panelOptions.withDescription(desc) else {},
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 9.5K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const IP_MAX_MEMBERSHIPS ideal-int pkg syscall (freebsd-arm64), const IP_MAX_SOCK_MUTE_FILTER = 128 pkg syscall (freebsd-arm64), const IP_MAX_SOCK_MUTE_FILTER ideal-int pkg syscall (freebsd-arm64), const IP_MAX_SOCK_SRC_FILTER = 128 pkg syscall (freebsd-arm64), const IP_MAX_SOCK_SRC_FILTER ideal-int pkg syscall (freebsd-arm64), const IP_MAX_SOURCE_FILTER = 1024
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/' }; private static final char PAD = '='; private static final byte[] DECODE_TABLE = new byte[128]; static { for (int i = 0; i < DECODE_TABLE.length; i++) { DECODE_TABLE[i] = Byte.MAX_VALUE; } for (int i = 0; i < ENCODE_TABLE.length; i++) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.3K bytes - Viewed (0) -
guava/src/com/google/common/hash/Murmur3_32HashFunction.java
} } private static long codePointToFourUtf8Bytes(int codePoint) { // codePoint has at most 21 bits return ((0xFL << 4) | (codePoint >>> 18)) | ((0x80L | (0x3F & (codePoint >>> 12))) << 8) | ((0x80L | (0x3F & (codePoint >>> 6))) << 16) | ((0x80L | (0x3F & codePoint)) << 24); } private static long charToThreeUtf8Bytes(char c) { return ((0x7L << 5) | (c >>> 12))
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 11.8K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/FormBodyTest.kt
assertThat(formEncode(124)).isEqualTo("%7C") assertThat(formEncode(125)).isEqualTo("%7D") assertThat(formEncode(126)).isEqualTo("%7E") assertThat(formEncode(127)).isEqualTo("%7F") assertThat(formEncode(128)).isEqualTo("%C2%80") assertThat(formEncode(255)).isEqualTo("%C3%BF") } @Throws(IOException::class) private fun formEncode(codePoint: Int): String {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.8K bytes - Viewed (0) -
internal/kms/context.go
// is based on the un-escaped keys. It never returns an error. func (c Context) MarshalText() ([]byte, error) { if len(c) == 0 { return []byte{'{', '}'}, nil } // Pre-allocate a buffer - 128 bytes is an arbitrary // heuristic value that seems like a good starting size. b := bytes.NewBuffer(make([]byte, 0, 128)) if len(c) == 1 { for k, v := range c { b.WriteString(`{"`) escapeStringJSON(b, k)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 6K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/Crc32cHashFunctionTest.java
next = (next >>> 8) ^ Crc32cHashFunction.Crc32cHasher.BYTE_TABLE[next & 0xFF]; } int[][] expected = new int[4][256]; for (int b = 0; b < 4; ++b) { for (int bit = 128; bit != 0; bit >>= 1) { expected[b][bit] = next; next = advanceOneBit(next); } } for (int b = 0; b < 4; ++b) { expected[b][0] = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 6.5K bytes - Viewed (0)