Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CONTEXT3 (0.03 sec)

  1. src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseContextTest.java

                    flags2);
    
            // Test with notifications disabled
            DirectoryLeaseContext context3 = new DirectoryLeaseContext(key, 0, DirectoryCacheScope.RECURSIVE_TREE);
            context3.setNotificationEnabled(false);
    
            byte[] buffer3 = new byte[context3.size()];
            context3.encode(buffer3, 0);
    
            int flags3 = SMBUtil.readInt4(buffer3, 68);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java

                contexts[1] = new TestCreateContextResponse("CONTEXT2".getBytes(StandardCharsets.UTF_8));
                contexts[2] = new TestCreateContextResponse("CONTEXT3".getBytes(StandardCharsets.UTF_8));
    
                // Decode each context
                for (int i = 0; i < contexts.length; i++) {
                    contexts[i].decode(buffer, i * 100, 50);
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

                contexts[1] = new TestCreateContextRequest("CONTEXT2".getBytes(StandardCharsets.UTF_8));
                contexts[2] = new TestCreateContextRequest("CONTEXT3".getBytes(StandardCharsets.UTF_8));
    
                // Encode all contexts
                byte[] buffer = new byte[512];
                int offset = 0;
                for (CreateContextRequest context : contexts) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top