Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getListCount (0.07 sec)

  1. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

                        th.getConfig().getListSize() - FIND_OVERHEAD), this.response);
    
                this.nextRequest = new Trans2FindNext2(th.getConfig(), this.response.getSid(), this.response.getResumeKey(),
                        this.response.getLastName(), th.getConfig().getListCount(), th.getConfig().getListSize() - FIND_OVERHEAD);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/ConfigurationTest.java

                mockConfig.getNetbiosCachePolicy();
                mockConfig.getMaximumBufferSize();
                mockConfig.getTransactionBufferSize();
                mockConfig.getBufferCacheSize();
                mockConfig.getListCount();
                mockConfig.getListSize();
                mockConfig.getAttributeCacheTimeout();
                mockConfig.isIgnoreCopyToException();
                mockConfig.getBatchLimit("cmd");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getBufferCacheSize();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getListCount()
         */
        @Override
        public int getListCount() {
            return this.delegate.getListCount();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getListSize()
         */
        @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)
  4. src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java

            // Use lenient() to avoid strict stubbing issues with Mockito
            lenient().when(tree.acquire()).thenReturn(tree);
            lenient().when(tree.getConfig()).thenReturn(config);
            lenient().when(config.getListCount()).thenReturn(10);
            lenient().when(config.getListSize()).thenReturn(4096);
    
            lenient().when(parent.getLocator()).thenReturn(locator);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertEquals(0xFFFF - 512, config.getTransactionBufferSize());
            assertEquals(0x10000, config.getMaximumBufferSize());
            assertEquals(16, config.getBufferCacheSize());
            assertEquals(200, config.getListCount());
            assertEquals(65435, config.getListSize());
            assertEquals(5000L, config.getAttributeCacheTimeout());
        }
    
        @Test
        @DisplayName("Test miscellaneous configuration getters")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
            } else {
                final Trans2FindFirst2 req = new Trans2FindFirst2(tf.getConfig(), "\\", "*", SmbConstants.ATTR_DIRECTORY,
                        tf.getConfig().getListCount(), tf.getConfig().getListSize());
                final Trans2FindFirst2Response resp = new Trans2FindFirst2Response(tf.getConfig());
                try {
                    send(req, resp);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  7. src/main/java/jcifs/Configuration.java

        /**
         *
         * Property {@code jcifs.smb.client.listCount} (int, default 200)
         *
         * @return maxmimum number of elements to request in a list request
         */
        int getListCount();
    
        /**
         *
         * Property {@code jcifs.smb.client.listSize} (int, default 65435)
         *
         * @return maximum data size for list/info requests (known overhead is subtracted)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/config/BaseConfiguration.java

            return this.maximumBufferSize;
        }
    
        @Override
        public int getBufferCacheSize() {
            return this.bufferCacheSize;
        }
    
        @Override
        public int getListCount() {
            return this.smbListCount;
        }
    
        @Override
        public int getListSize() {
            return this.smbListSize;
        }
    
        @Override
        public long getAttributeCacheTimeout() {
    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