Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for Bang (0.02 sec)

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

                }
            }
    
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.SidResolver#getLocalGroupsMap(jcifs.CIFSContext, java.lang.String, int)
         */
        @Override
        public Map<jcifs.SID, List<jcifs.SID>> getLocalGroupsMap ( CIFSContext tc, String authorityServerName, int flags ) throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SpnegoContext.java

            if ( !this.completed ) {
                return false;
            }
            return this.mechContext.isMICAvailable();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString () {
            return "SPNEGO[" + this.mechContext + "]";
        }
    
    
        /**
         * 
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

    
        /**
         * Close/release the file
         * 
         * This releases all resources that this file holds. If not using strict mode this is currently a no-op.
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        void close ();
    
    
        /**
         * Fetch all children
         * 
         * @return an iterator over the child resources
         * @throws CIFSException
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

         */
        public SmbTreeHandle getTreeHandle () throws CIFSException {
            return ensureTreeConnected();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        public synchronized void close () {
            SmbTreeHandleImpl th = this.treeHandle;
            if ( th != null ) {
                this.treeHandle = null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top