- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 141 for 128 (0.03 sec)
-
src/bytes/compare_test.go
t.Error("b != b") } if Compare(b, b[:1]) != 1 { t.Error("b > b[:1] failed") } } func TestCompareBytes(t *testing.T) { lengths := make([]int, 0) // lengths to test in ascending order for i := 0; i <= 128; i++ { lengths = append(lengths, i) } lengths = append(lengths, 256, 512, 1024, 1333, 4095, 4096, 4097) if !testing.Short() { lengths = append(lengths, 65535, 65536, 65537, 99999) }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 13 23:11:42 UTC 2023 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
} if ( !msg2.getFlag(NtlmFlags.NTLMSSP_NEGOTIATE_128) ) { throw new SmbUnsupportedOperationException("Server does not support 128-bit keys"); } } this.ntlmsspFlags &= msg2.getFlags(); Type3Message msg3 = createType3Message(msg2); msg3.setupMIC(this.type1Bytes, token);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
return null; } } } File getTouchfile(Artifact artifact) { StringBuilder sb = new StringBuilder(128); sb.append(artifact.getArtifactId()); sb.append('-').append(artifact.getBaseVersion()); if (artifact.getClassifier() != null) { sb.append('-').append(artifact.getClassifier());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
cmd/benchmark-utils_test.go
bucket := getRandomBucketName() object := getRandomObjectName() // create bucket. err = obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{}) if err != nil { b.Fatal(err) } objSize := 128 * humanize.MiByte // PutObjectPart returns etag of the object inserted. // etag variable is assigned with that value. var etag string // get text data generated for number of bytes equal to object size.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Dec 23 15:46:00 UTC 2022 - 8.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/InetAddressesTest.java
"::ffff:ffff:ffff:ffff", BigInteger.ONE.shiftLeft(64).subtract(BigInteger.ONE)); checkBigIntegerConversion( "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", BigInteger.ONE.shiftLeft(128).subtract(BigInteger.ONE)); } public void testFromIpv4BigIntegerInputTooLarge() { IllegalArgumentException expected = assertThrows( IllegalArgumentException.class, () ->
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 24 16:44:05 UTC 2024 - 35.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.12.md
- [Client Binaries](#client-binaries-1) - [Server Binaries](#server-binaries-1) - [Node Binaries](#node-binaries-1) - [Changelog since v1.12.8](#changelog-since-v1128) - [Other notable changes](#other-notable-changes-1) - [v1.12.8](#v1128) - [Downloads for v1.12.8](#downloads-for-v1128) - [Client Binaries](#client-binaries-2) - [Server Binaries](#server-binaries-2) - [Node Binaries](#node-binaries-2)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 293.8K bytes - Viewed (0) -
tests/migrate_test.go
} for _, columnType := range columnTypes { switch columnType.Name() { case "name": if length, _ := columnType.Length(); (fullSupported || length != 0) && length != 128 { t.Fatalf("name's length should be 128, but got %v", length) } case "salary": if precision, o, _ := columnType.DecimalSize(); (fullSupported || precision != 0) && precision != 2 {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Mar 18 11:24:16 UTC 2024 - 56.2K bytes - Viewed (0) -
guava/src/com/google/common/hash/BloomFilterStrategies.java
combinedHash = ~combinedHash; } if (!bits.get(combinedHash % bitSize)) { return false; } } return true; } }, /** * This strategy uses all 128 bits of {@link Hashing#murmur3_128} when hashing. It looks different * from the implementation in MURMUR128_MITZ_32 because we're avoiding the multiplication in the
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/PACTest.java
verifyNfold(168, "ba", "fb25d531ae8974499f52fd92ea9857c4ba24cf297e"); verifyNfold(64, "kerberos", "6b65726265726f73"); verifyNfold(128, "kerberos", "6b65726265726f737b9b5b2b93132b93"); verifyNfold(168, "kerberos", "8372c236344e5f1550cd0747e15d62ca7a5a3bcea4"); verifyNfold(256, "kerberos", "6b65726265726f737b9b5b2b93132b935c9bdcdad95c9899c4cae4dee6d6cae4");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Oct 01 12:01:17 UTC 2023 - 22.3K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrUnknownWORMModeDirective-124] _ = x[ErrBucketTaggingNotFound-125] _ = x[ErrObjectLockInvalidHeaders-126] _ = x[ErrInvalidTagDirective-127] _ = x[ErrPolicyAlreadyAttached-128] _ = x[ErrPolicyNotAttached-129] _ = x[ErrExcessData-130] _ = x[ErrInvalidEncryptionMethod-131] _ = x[ErrInvalidEncryptionKeyID-132] _ = x[ErrInsecureSSECustomerRequest-133] _ = x[ErrSSEMultipartEncrypted-134]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 21.4K bytes - Viewed (0)