Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isBool (0.27 sec)

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

                    }
                    return new NetServerFileEntryAdapterIterator(parent, new NetServerEnumIterator(parent, th, wildcard, searchAttributes, fnf), ff);
                }
            }
            else if ( locator.isRoot() ) {
                return doShareEnum(parent, wildcard, searchAttributes, fnf, ff);
            }
    
            try ( SmbTreeHandleImpl th = parent.ensureTreeConnected() ) {
                if ( th.isSMB2() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResourceLocator.java

         * @throws CIFSException
         */
        boolean isWorkgroup () throws CIFSException;
    
    
        /**
         * 
         * @return whether this is a root resource
         */
        boolean isRoot ();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

        boolean hasNextAddress () {
            return this.addressIndex < this.addresses.length;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbResourceLocator#isRoot()
         */
        @Override
        public boolean isRoot () {
            // length == 0 should not happen
            return getShare() == null && getUNCPath().length() <= 1;
        }
    
    
        boolean isRootOrShare () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                int t = getType();
                if ( t == TYPE_SHARE ) {
                    this.size = fetchAllocationInfo(th).getCapacity();
                }
                else if ( !this.fileLocator.isRoot() && t != TYPE_NAMED_PIPE ) {
                    queryPath(th, this.fileLocator.getUNCPath(), FileInformation.FILE_STANDARD_INFO);
                }
                else {
                    this.size = 0L;
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top