Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for closeInternal (0.21 sec)

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

         */
        @Override
        public synchronized void close ( long lastWriteTime ) throws CIFSException {
            closeInternal(lastWriteTime, true);
        }
    
    
        /**
         * @param lastWriteTime
         * @throws SmbException
         */
        void closeInternal ( long lastWriteTime, boolean explicit ) throws CIFSException {
            SmbTreeHandleImpl t = this.tree;
            try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/JAASAuthenticator.java

            JAASAuthenticator auth = new JAASAuthenticator();
            cloneInternal(auth, this);
            return auth;
        }
    
    
        /**
         * Clone the context
         * 
         * @param to
         * @param from
         */
        protected static void cloneInternal ( JAASAuthenticator to, JAASAuthenticator from ) {
            Kerb5Authenticator.cloneInternal(to, from);
            to.serviceName = from.serviceName;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

        public NtlmPasswordAuthentication clone () {
            NtlmPasswordAuthentication cloned = new NtlmPasswordAuthentication();
            cloneInternal(cloned, this);
            return cloned;
        }
    
    
        /**
         * @param to
         * @param from
         */
        protected static void cloneInternal ( NtlmPasswordAuthentication to, NtlmPasswordAuthentication from ) {
            to.context = from.context;
            if ( from.hashesExternal ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java

            return this.ntHash;
        }
    
    
        @Override
        public NtlmPasswordAuthenticator clone () {
            NtlmNtHashAuthenticator cloned = new NtlmNtHashAuthenticator(this.ntHash.clone());
            cloneInternal(cloned, this);
            return cloned;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 2.5K bytes
    - Viewed (0)
Back to top