Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maxRequestRetries (0.17 sec)

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

            this.sessionLimit = Config.getInt(p, "jcifs.smb.client.ssnLimit", SmbConstants.DEFAULT_SSN_LIMIT);
    
            this.maxRequestRetries = Config.getInt(p, "jcifs.smb.client.maxRequestRetries", 2);
    
            this.smbTcpNoDelay = Config.getBoolean(p, "jcifs.smb.client.tcpNoDelay", false);
    Java
    - Registered: Sun Apr 21 00:10:10 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

        protected int smbListSize = 65435;
        protected int smbListCount = 200;
        protected long smbAttributeExpiration = 5000L;
        protected boolean ignoreCopyToException = false;
        protected int maxRequestRetries = 2;
        protected boolean traceResourceUsage;
        protected boolean strictResourceLifecycle;
        protected Set<String> disallowCompound;
        protected DialectVersion minVersion;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return the size of the requested server notify buffer
         */
        int getNotifyBufferSize ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.maxRequestRetries</tt> (int, default 2)
         * 
         * @return retry SMB requests on failure up to n times
         */
        int getMaxRequestRetries ();
    
    
        /**
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top