Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isStrictResourceLifecycle (0.44 sec)

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

        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isStrictResourceLifecycle()
         */
        @Override
        public boolean isStrictResourceLifecycle () {
            return this.delegate.isStrictResourceLifecycle();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getMaxRequestRetries()
         */
    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/config/BaseConfiguration.java

        }
    
    
        @Override
        public boolean isTraceResourceUsage () {
            return this.traceResourceUsage;
        }
    
    
        @Override
        public boolean isStrictResourceLifecycle () {
            return this.strictResourceLifecycle;
        }
    
    
        @Override
        public boolean isSendNTLMTargetName () {
            return this.sendNTLMTargetName;
        }
    
    
        @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)
  3. src/main/java/jcifs/Configuration.java

         * resources, however comes at the cost of having to properly release all SmbFile instances you no longer need.
         * 
         * @return whether to use strict resource lifecycle
         */
        boolean isStrictResourceLifecycle ();
    
    
        /**
         * This is solely intended for debugging
         * 
         * @return whether to track the locations from which resources were created
         */
        boolean isTraceResourceUsage ();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                if ( this.treeHandle != null && this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    this.treeHandle.release();
                }
                this.treeHandle = this.treeConnection.connectWrapException(this.fileLocator);
                this.treeHandle.ensureDFSResolved();
                if ( this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    // one extra share to keep the tree alive
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top