Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isTraceResourceUsage (0.36 sec)

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

        }
    
    
        @Override
        public int getMaxRequestRetries () {
            return this.maxRequestRetries;
        }
    
    
        @Override
        public boolean isTraceResourceUsage () {
            return this.traceResourceUsage;
        }
    
    
        @Override
        public boolean isStrictResourceLifecycle () {
            return this.strictResourceLifecycle;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

            if ( service != null && !service.startsWith("??") ) {
                this.service = service;
            }
            this.service0 = this.service;
    
            this.traceResource = this.session.getConfig().isTraceResourceUsage();
            if ( this.traceResource ) {
                this.acquires = new LinkedList<>();
                this.releases = new LinkedList<>();
            }
            else {
                this.acquires = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

    
        /**
         * This is solely intended for debugging
         * 
         * @return whether to track the locations from which resources were created
         */
        boolean isTraceResourceUsage ();
    
    
        /**
         * @param command
         * @return whether to allow creating compound requests with that command
         */
        boolean isAllowCompound ( String command );
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top