- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for alternatingFileId (0.41 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/internal/smb2/io/Smb2FlushRequestTest.java
// Test with alternating pattern byte[] alternatingFileId = new byte[16]; for (int i = 0; i < 16; i++) { alternatingFileId[i] = (byte) (i % 2 == 0 ? 0xAA : 0x55); } Smb2FlushRequest alternatingRequest = new Smb2FlushRequest(mockConfig, alternatingFileId); testFileIdInRequest(alternatingRequest, alternatingFileId); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java
// Test with alternating pattern byte[] alternatingFileId = new byte[16]; for (int i = 0; i < 16; i++) { alternatingFileId[i] = (byte) (i % 2 == 0 ? 0xAA : 0x55); } Smb2CloseRequest alternatingRequest = new Smb2CloseRequest(mockConfig, alternatingFileId, testFileName); testFileIdInRequest(alternatingRequest, alternatingFileId); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.5K bytes - Click Count (0)