Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            return this.delegate.isTraceResourceUsage();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isStrictResourceLifecycle()
         */
        @Override
        public boolean isStrictResourceLifecycle() {
            return this.delegate.isStrictResourceLifecycle();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getMaxRequestRetries()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertFalse(config.isIgnoreCopyToException());
            assertEquals(2, config.getMaxRequestRetries());
            assertFalse(config.isTraceResourceUsage());
            assertFalse(config.isStrictResourceLifecycle());
            assertNull(config.getMachineId());
        }
    
        @Test
        @DisplayName("Test getBatchLimit method")
        void testGetBatchLimit() {
            // Test default batch limit
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K 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: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            return this.maxRequestRetries;
        }
    
        @Override
        public boolean isTraceResourceUsage() {
            return this.traceResourceUsage;
        }
    
        @Override
        public boolean isStrictResourceLifecycle() {
            return this.strictResourceLifecycle;
        }
    
        @Override
        public boolean isSendNTLMTargetName() {
            return this.sendNTLMTargetName;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top