Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for closeInternal (1.79 sec)

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

         */
        @Override
        public synchronized void close(final long lastWriteTime) throws CIFSException {
            closeInternal(lastWriteTime, true);
        }
    
        /**
         * @param lastWriteTime
         * @throws SmbException
         */
        void closeInternal(final long lastWriteTime, final boolean explicit) throws CIFSException {
            final SmbTreeHandleImpl t = this.tree;
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.4K bytes
    - Viewed (1)
  2. src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java

                return new FileEntry[0];
            }
    
            @Override
            protected void doCloseInternal() throws CIFSException {
                if (throwOnCloseInternal)
                    throw new CIFSException("closeInternal fail");
            }
        }
    
        @Mock
        SmbTreeHandleImpl tree;
        @Mock
        SmbResource parent;
        @Mock
        ResourceNameFilter nameFilter;
    
        private void stubAcquireReturnsSelf() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/JAASAuthenticator.java

            cloneInternal(auth, this);
            return auth;
        }
    
        /**
         * Clone the context
         *
         * @param to the target authenticator
         * @param from the source authenticator
         */
        protected static void cloneInternal(JAASAuthenticator to, JAASAuthenticator from) {
            Kerb5Authenticator.cloneInternal(to, from);
            to.serviceName = from.serviceName;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

            cloneInternal(cloned, this);
            return cloned;
        }
    
        /**
         * Clone internal fields from one NtlmPasswordAuthentication to another.
         *
         * @param to the target authentication object to copy to
         * @param from the source authentication object to copy from
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java

            return this.ntHash;
        }
    
        @Override
        public NtlmPasswordAuthenticator clone() {
            final NtlmNtHashAuthenticator cloned = new NtlmNtHashAuthenticator(this.ntHash.clone());
            cloneInternal(cloned, this);
            return cloned;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/Kerb5Authenticator.java

            cloneInternal(auth, this);
            return auth;
        }
    
        /**
         * Clone the context
         *
         * @param to the target authenticator
         * @param from the source authenticator
         */
        public static void cloneInternal(Kerb5Authenticator to, Kerb5Authenticator from) {
            NtlmPasswordAuthenticator.cloneInternal(to, from);
            to.setUser(from.getUser());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            cloneInternal(cloned, this);
            return cloned;
        }
    
        /**
         * Clone internal fields from one authenticator to another.
         *
         * @param cloned the target authenticator to copy to
         * @param toClone the source authenticator to copy from
         */
        protected static void cloneInternal(NtlmPasswordAuthenticator cloned, NtlmPasswordAuthenticator toClone) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
Back to top