Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DLse (0.03 sec)

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

            DirectoryLeaseContext context = new DirectoryLeaseContext(key, 0, DirectoryCacheScope.IMMEDIATE_CHILDREN);
    
            byte[] name = context.getName();
            assertNotNull(name);
            assertEquals("DLse", new String(name));
        }
    
        @Test
        public void testSettersAndGetters() {
            Smb2LeaseKey key1 = new Smb2LeaseKey();
            Smb2LeaseKey key2 = new Smb2LeaseKey();
    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. docs/smb3-features/04-directory-leasing-design.md

    ### 4.1 Directory Lease Context
    ```java
    package jcifs.internal.smb2.lease;
    
    public class DirectoryLeaseContext extends Smb2LeaseContext {
        public static final String NAME_DIRECTORY_REQUEST = "DLse";
        public static final String NAME_DIRECTORY_RESPONSE = "DLse";
        
        private DirectoryCacheScope cacheScope;
        private long maxCacheAge;
        private boolean notificationEnabled;
        private int notificationFilter;
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top