- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for 216 (0.01 sec)
-
guava-tests/test/com/google/common/collect/ImmutableListTest.java
"Modifying the builder should not have changed any already built sets", 216, webSafeColors.size()); assertEquals("the new array should be one bigger than webSafeColors", 217, addedColor.size()); Integer[] appendColorArray = addedColor.toArray(new Integer[addedColor.size()]); assertEquals(0x00BFFF, (int) appendColorArray[216]); } public void testBuilderAddHandlesNullsCorrectly() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 23.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/AbstractImmutableSetTest.java
216, webSafeColors.size()); assertEquals("the new array should be one bigger than webSafeColors", 217, addedColor.size()); Integer[] appendColorArray = addedColor.toArray(new Integer[addedColor.size()]); assertEquals(getComplexBuilderSetLastElement(), (int) appendColorArray[216]); } abstract int getComplexBuilderSetLastElement();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableListTest.java
"Modifying the builder should not have changed any already built sets", 216, webSafeColors.size()); assertEquals("the new array should be one bigger than webSafeColors", 217, addedColor.size()); Integer[] appendColorArray = addedColor.toArray(new Integer[addedColor.size()]); assertEquals(0x00BFFF, (int) appendColorArray[216]); } public void testBuilderAddHandlesNullsCorrectly() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java
assertEquals(700L, SMBUtil.readInt8(buffer, EXPECTED_SIZE * 2)); assertEquals(800L, SMBUtil.readInt8(buffer, EXPECTED_SIZE * 2 + 8)); assertEquals(900, SMBUtil.readInt4(buffer, EXPECTED_SIZE * 2 + 16)); } } @Nested @DisplayName("Edge Case Tests") class EdgeCaseTests { @Test @DisplayName("Should handle encoding with minimum buffer size")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrSiteReplicationBackendIssue-212] _ = x[ErrSiteReplicationServiceAccountError-213] _ = x[ErrSiteReplicationBucketConfigError-214] _ = x[ErrSiteReplicationBucketMetaError-215] _ = x[ErrSiteReplicationIAMError-216] _ = x[ErrSiteReplicationConfigMissing-217] _ = x[ErrSiteReplicationIAMConfigMismatch-218] _ = x[ErrAdminRebalanceAlreadyStarted-219] _ = x[ErrAdminRebalanceNotStarted-220] _ = x[ErrAdminBucketQuotaExceeded-221]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
context = new PreauthIntegrityNegotiateContext(mockConfig, hashAlgos, salt); int encoded = context.encode(buffer, 0); assertEquals(4 + (count * 2) + 16, encoded); assertEquals(context.size(), encoded); } @Test @DisplayName("Should encode and decode correctly")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmUtilTest.java
int len = clean.length(); byte[] out = new byte[len / 2]; for (int i = 0; i < len; i += 2) { out[i / 2] = (byte) Integer.parseInt(clean.substring(i, i + 2), 16); } return out; } @Test @DisplayName("getNTHash: known vector for 'password'") void testGetNTHash_knownVector() { // Arrange String password = "password";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
"0x08, Invalid" }) void testGetApplyToText(String flagsHex, String expectedText) { ace.flags = Integer.parseInt(flagsHex.substring(2), 16); assertEquals(expectedText, ace.getApplyToText()); } @Test @DisplayName("Test toString format for allow ACE") void testToStringAllowACE() throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java
ByteBuffer bb = ByteBuffer.wrap(testBuffer).order(ByteOrder.LITTLE_ENDIAN); // DfsReferralResponseBuffer header bb.putShort((short) 32); // pathConsumed (will be divided by 2 = 16) bb.putShort((short) 2); // numReferrals bb.putShort((short) 7); // tflags bb.putShort((short) 0); // tflags high bytes // First Referral v1
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
// Given int securityMode = Integer.decode(securityModeHex); int capabilities = (int) Long.parseLong(capabilitiesHex.substring(2), 16); Smb2SessionSetupRequest req = new Smb2SessionSetupRequest(mockContext, securityMode, capabilities, 0, null); byte[] buffer = new byte[512]; // When req.encode(buffer, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0)