Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initDisallowCompound (0.27 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

                initProtocolVersions(nosmb1 ? DialectVersion.SMB202 : null, !smb2 ? DialectVersion.SMB1 : null);
            }
    
            initResolverOrder(p.getProperty("jcifs.resolveOrder"));
            initDisallowCompound(p.getProperty("jcifs.smb.client.disallowCompound"));
            initDefaults();
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            if ( this.minVersion.atLeast(this.maxVersion) ) {
                this.maxVersion = this.minVersion;
            }
        }
    
    
        protected void initDisallowCompound ( String prop ) {
            if ( prop == null ) {
                return;
            }
            Set<String> disallow = new HashSet<>();
            StringTokenizer st = new StringTokenizer(prop, ",");
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
Back to top