- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 17 for 4648 (0.03 seconds)
-
guava/src/com/google/common/io/BaseEncoding.java
/** * A binary encoding scheme for reversibly translating between byte sequences and printable ASCII * strings. This class includes several constants for encoding schemes specified by <a * href="http://tools.ietf.org/html/rfc4648">RFC 4648</a>. For example, the expression: * * {@snippet : * BaseEncoding.base32().encode("foo".getBytes(US_ASCII)) * } * * <p>returns the string {@code "MZXW6==="}, and * * {@snippet :
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Oct 06 14:51:47 GMT 2025 - 41.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/BaseEncodingTest.java
assertThrows(UnsupportedOperationException.class, () -> separated.withSeparator("$", 4)); } public void testBase64() { // The following test vectors are specified in RFC 4648 itself testEncodingWithSeparators(base64(), "", ""); testEncodingWithSeparators(base64(), "f", "Zg=="); testEncodingWithSeparators(base64(), "fo", "Zm8="); testEncodingWithSeparators(base64(), "foo", "Zm9v");
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 24.7K bytes - Click Count (0) -
.teamcity/scripts/configure_build_env_on_ec2.sh
echo "Setting READ_ONLY Gradle cache via env.GRADLE_RO_DEP_CACHE to use /opt/gradle-cache" fi # Print details of volumes to help us understand https://github.com/gradle/gradle-private/issues/4642
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 23 03:27:59 GMT 2025 - 2.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java
errors++; } } assertEquals(0, errors); } @Test void testLocationTrackingResolution() throws Exception { File pom = getProject("MNG-7648"); MavenSession session = createMavenSession(pom); MavenProject project = session.getCurrentProject(); InputLocation dependencyLocation = null;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 17.6K bytes - Click Count (0) -
guava/src/com/google/common/hash/Murmur3_128HashFunction.java
case 9: k2 ^= (long) toUnsignedInt(bb.get(8)); // fall through case 8: k1 ^= bb.getLong(); break; case 7: k1 ^= (long) toUnsignedInt(bb.get(6)) << 48; // fall through case 6: k1 ^= (long) toUnsignedInt(bb.get(5)) << 40; // fall through case 5: k1 ^= (long) toUnsignedInt(bb.get(4)) << 32; // fall through case 4:Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Apr 14 16:36:11 GMT 2025 - 5.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
byte[] blob = new byte[] { 9, 8, 7, 6 }; // Place blob further ahead to exercise pad adjustment logic int secBufOffset = Smb2Constants.SMB2_HEADER_LENGTH + 16; // beyond current bodyIndex (64+8) int sessionFlags = Smb2SessionSetupResponse.SMB2_SESSION_FLAGS_IS_NULL; buildSessionSetupBody(buf, headerStart, bodyStart, sessionFlags, secBufOffset, blob); resp.decode(buf, headerStart);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.7K bytes - Click Count (0) -
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
Type2Message.writeUShort(truncatedMessage, 12, 0); // length Type2Message.writeUShort(truncatedMessage, 14, 0); // max length Type2Message.writeULong(truncatedMessage, 16, 48); // offset (past the end) // Set flags Type2Message.writeULong(truncatedMessage, 20, Type2Message.NTLMSSP_NEGOTIATE_UNICODE); // Challenge bytes would be at 24-31 but we're truncated
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 38.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectRequestTest.java
assertEquals(8, size8Method.invoke(request, 8)); assertEquals(16, size8Method.invoke(request, 9)); assertEquals(72, size8Method.invoke(request, 68)); // SMB2_HEADER_LENGTH + 4 = 68 } @Test @DisplayName("Should maintain consistent command type") void testCommandTypeConsistency() throws Exception { // Given
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.1K bytes - Click Count (0) -
cmd/erasure-metadata_test.go
mkTest(15, 3, 7), // Exact simple majority consensus mkTest(15, 3, 8), // More than simple majority consensus mkTest(16, 4, 11), // No simple majority consensus mkTest(16, 4, 8), // Exact simple majority consensus mkTest(16, 4, 9), // non-tiered object require read quorum of EcM nonTieredTest(15, 3, 12), // non-tiered object with fewer than EcM in consensus
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 13.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/util/MD4.java
* reset. * * @return the array of bytes for the resulting hash value. */ @Override public byte[] engineDigest() { // pad output to 56 mod 64; as RFC1320 puts it: congruent to 448 mod 512 final int bufferNdx = (int) (count % BLOCK_LENGTH); final int padLen = bufferNdx < 56 ? 56 - bufferNdx : 120 - bufferNdx; // padding is alwas binary 1 followed by binary 0sCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 9.6K bytes - Click Count (0)