Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateGuid (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java

            this.timeoutMs = timeoutMs;
            this.flags = persistent ? Smb2HandleCapabilities.SMB2_DHANDLE_FLAG_PERSISTENT : 0;
            this.createGuid = createGuid;
        }
    
        @Override
        public byte[] getName() {
            return CONTEXT_NAME_BYTES;
        }
    
        /**
         * Get the create GUID for this request
         * @return the create GUID
         */
        public HandleGuid getCreateGuid() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java

            }
            System.arraycopy(newFileId, 0, this.fileId, 0, 16);
        }
    
        @Override
        public String toString() {
            return "HandleInfo{" + "path='" + path + '\'' + ", createGuid=" + createGuid + ", type=" + type + ", timeout=" + timeout
                    + ", reconnecting=" + reconnecting + '}';
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. docs/smb3-features/02-persistent-handles-design.md

        
        private long timeout;
        private int flags;
        private HandleGuid createGuid;
        
        public DurableHandleV2Request(long timeout, boolean persistent) {
            super(NAME);
            this.timeout = timeout;
            this.flags = persistent ? Smb2HandleCapabilities.SMB2_DHANDLE_FLAG_PERSISTENT : 0;
            this.createGuid = new HandleGuid();
        }
        
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

         * @param createGuid the create GUID to use
         */
        public void addDurableHandleV2Context(long timeoutMs, boolean persistent, jcifs.internal.smb2.persistent.HandleGuid createGuid) {
            jcifs.internal.smb2.persistent.DurableHandleV2Request context =
                    new jcifs.internal.smb2.persistent.DurableHandleV2Request(timeoutMs, persistent, createGuid);
            addCreateContext(context);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
Back to top