Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for maxVersion (0.37 sec)

  1. src/test/java/jcifs/tests/AllTests.java

                    cfg.put("jcifs.smb.client.maxVersion", "SMB1");
                    cfg.put("jcifs.smb.client.useNtStatus", "false");
                    return cfg;
                }
            });
    
            MUTATIONS.put("noNTSmbs", new TestMutation() {
    
                @Override
                public Map<String, String> mutate ( Map<String, String> cfg ) {
                    cfg.put("jcifs.smb.client.maxVersion", "SMB1");
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            this.minVersion = min != null ? min : DialectVersion.SMB1;
            this.maxVersion = max != null ? max : DialectVersion.SMB210;
    
            if ( this.minVersion.atLeast(this.maxVersion) ) {
                this.maxVersion = this.minVersion;
            }
        }
    
    
        protected void initDisallowCompound ( String prop ) {
            if ( prop == null ) {
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  3. src/test/java/jcifs/tests/ContextConfigTest.java

            assertEquals(DialectVersion.SMB302, p1.getMaximumVersion());
    
            Properties prop2 = new Properties();
            prop2.setProperty("jcifs.smb.client.maxVersion", "SMB302");
            prop2.setProperty("jcifs.smb.client.minVersion", "SMB311");
            PropertyConfiguration p2 = new PropertyConfiguration(prop2);
            assertEquals(DialectVersion.SMB311, p2.getMinimumVersion());
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/PropertyConfiguration.java

            this.guestPassword = p.getProperty("jcifs.smb.client.guestPassword", "");
    
            String minVer = p.getProperty("jcifs.smb.client.minVersion");
            String maxVer = p.getProperty("jcifs.smb.client.maxVersion");
    
            if ( minVer != null || maxVer != null ) {
                initProtocolVersions(minVer, maxVer);
            }
            else {
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         * @return minimum protocol version to use/allow
         * @since 2.1
         */
        DialectVersion getMinimumVersion ();
    
    
        /**
         * Maximum protocol version
         * 
         * Property <tt>jcifs.smb.client.maxVersion</tt> (string, default SMB210)
         * 
         * @see DialectVersion
         * @return maximum protocol version to use/allow
         * @since 2.1
         */
        DialectVersion getMaximumVersion ();
    
    
        /**
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  6. internal/config/api/api.go

    	}
    	if maxVerStr != "" {
    		maxVersions, err := strconv.ParseInt(maxVerStr, 10, 64)
    		if err != nil {
    			return cfg, err
    		}
    		if maxVersions <= 0 {
    			return cfg, fmt.Errorf("invalid object max versions value: %v", maxVersions)
    		}
    		cfg.ObjectMaxVersions = maxVersions
    	} else {
    		cfg.ObjectMaxVersions = math.MaxInt64
    	}
    
    	return cfg, nil
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 01:08:07 GMT 2024
    - 11.1K bytes
    - Viewed (1)
  7. api/go1.2.txt

    pkg crypto/tls, const VersionTLS11 = 770
    pkg crypto/tls, const VersionTLS11 ideal-int
    pkg crypto/tls, const VersionTLS12 = 771
    pkg crypto/tls, const VersionTLS12 ideal-int
    pkg crypto/tls, type Config struct, MaxVersion uint16
    pkg crypto/tls, type Config struct, MinVersion uint16
    pkg crypto/x509, func MarshalECPrivateKey(*ecdsa.PrivateKey) ([]uint8, error)
    pkg crypto/x509, type Certificate struct, CRLDistributionPoints []string
    Plain Text
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top