Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMaxRequestRetries (0.18 sec)

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

            return this.delegate.isStrictResourceLifecycle();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getMaxRequestRetries()
         */
        @Override
        public int getMaxRequestRetries () {
            return this.delegate.getMaxRequestRetries();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getMachineId()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

            String savedFullPath = rpath != null ? rpath.getFullUNCPath() : null;
    
            String fullPath = "\\" + loc.getServer() + "\\" + loc.getShare() + loc.getUNCPath();
            int maxRetries = this.ctx.getConfig().getMaxRequestRetries();
            for ( int retries = 1; retries <= maxRetries; retries++ ) {
    
                if ( rpath != null ) {
                    rpath.setFullUNCPath(null, null, fullPath);
                }
    
                try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        }
    
    
        @Override
        public boolean isIgnoreCopyToException () {
            return this.ignoreCopyToException;
        }
    
    
        @Override
        public int getMaxRequestRetries () {
            return this.maxRequestRetries;
        }
    
    
        @Override
        public boolean isTraceResourceUsage () {
            return this.traceResourceUsage;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.maxRequestRetries</tt> (int, default 2)
         * 
         * @return retry SMB requests on failure up to n times
         */
        int getMaxRequestRetries ();
    
    
        /**
         * Property <tt>jcifs.smb.client.strictResourceLifecycle</tt> (bool, default false)
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top