Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for atur (0.19 sec)

  1. src/main/java/jcifs/smb/SmbRandomAccessFile.java

                // one extra acquire to keep this open till the stream is released
                this.handle = this.file.openUnshared(this.openFlags, this.access, this.sharing, SmbConstants.ATTR_NORMAL, this.options).acquire();
                return this.handle;
            }
            return this.handle.acquire();
        }
    
    
        /**
         * Ensures that the file descriptor is openend
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
            }
            else {
                Trans2FindFirst2 req = new Trans2FindFirst2(
                    tf.getConfig(),
                    "\\",
                    "*",
                    SmbConstants.ATTR_DIRECTORY,
                    tf.getConfig().getListCount(),
                    tf.getConfig().getListSize());
                Trans2FindFirst2Response resp = new Trans2FindFirst2Response(tf.getConfig());
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
Back to top