- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 303 for positions (0.09 sec)
-
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
// Then assertEquals(HEADER_SIZE + CHUNK_SIZE, bytesWritten); // Verify source key at correct position for (int i = 0; i < SOURCE_KEY_SIZE; i++) { assertEquals(sourceKey[i], largeBuffer[position + i]); } // Verify chunk count at correct position
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
assertEquals(6, smallEncodedSize); // actual: 2 bytes count + 2*2 bytes for ciphers assertEquals(6, largeEncodedSize); // Verify data at different positions assertArrayEquals(Arrays.copyOfRange(smallBuffer, 0, smallEncodedSize), Arrays.copyOfRange(largeBuffer, 500, 500 + largeEncodedSize)); } } @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java
byte[] buffer = new byte[1024]; int length = testBlock.encode(buffer, 0); assertTrue(length > 0); // Just verify that encoding worked without checking specific byte positions assertNull(testBlock.getAndx()); } @Test @DisplayName("Test encode with andx command and batching disabled") void testEncodeWithAndxBatchingDisabled() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Ascii.java
* printing space backward on the same printing line. (Applicable also to display devices.) * * @since 8.0 */ public static final byte BS = 8; /** * Horizontal Tabulation ('\t'): A format effector which controls the movement of the printing * position to the next in a series of predetermined positions along the printing line.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 21.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
void testStructureSizeImmutability() throws Exception { // Given byte[] buffer = new byte[2048]; // When - encode at multiple positions for (int i = 0; i < 5; i++) { Smb2TreeConnectRequest req = new Smb2TreeConnectRequest(mockConfig, TEST_PATH); req.encode(buffer, i * 200); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameTest.java
assertEquals('E', dst[2]); // (0x54 & 0x0F) + 0x41 = 0x45 = 'E' // Check padding (positions 8-30 should be 'CA' pairs for spaces) for (int i = 8; i < 31; i += 2) { assertEquals('C', dst[i + 1]); assertEquals('A', dst[i + 2]); } // Check type encoding at position 31-32 assertEquals('C', dst[31]); // (0x20 >> 4) + 0x41 = 'C'
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
@DisplayName("Should write at different buffer positions") void testWriteAtDifferentPositions() { byte[] buffer = new byte[512]; // Test at position 0 int bytesWritten = request.writeBytesWireFormat(buffer, 0); assertEquals(48, bytesWritten); assertEquals(48, SMBUtil.readInt2(buffer, 0)); // Test at position 100 Arrays.fill(buffer, (byte) 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSet.java
} } return false; } /** * If more than this many consecutive positions are filled in a table of the specified size, * report probable hash flooding. ({@link #hashFloodingDetected} may also report hash flooding * if fewer consecutive positions are filled; see that method for details.) */ static int maxRunBeforeFallback(int tableSize) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
} @Test @DisplayName("Should write at different buffer positions") void testWriteAtDifferentPositions() { request.setReadLength(2048); request.setOffset(4096L); byte[] buffer = new byte[512]; // Test at position 0 int bytesWritten = request.writeBytesWireFormat(buffer, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ArrayTable.java
* returned by {@code get(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex))}, but this * method runs more quickly. * * @param rowIndex position of the row key in {@link #rowKeyList()} * @param columnIndex position of the row key in {@link #columnKeyList()} * @return the value with the specified row and column
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 19:39:21 UTC 2025 - 26.8K bytes - Viewed (0)