Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getListSize (0.17 sec)

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

                        unc,
                        this.getWildcard(),
                        this.getSearchAttributes(),
                        th.getConfig().getListCount(),
                        th.getConfig().getListSize() - FIND_OVERHEAD),
                    this.response);
    
                this.nextRequest = new Trans2FindNext2(
                    th.getConfig(),
                    this.response.getSid(),
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getListCount();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getListSize()
         */
        @Override
        public int getListSize () {
            return this.delegate.getListSize();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getAttributeCacheTimeout()
         */
        @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)
  3. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

         * @param fileId
         */
        public Smb2QueryInfoRequest ( Configuration config, byte[] fileId ) {
            super(config, SMB2_QUERY_INFO);
            this.outputBufferLength = ( Math.min(config.getMaximumBufferSize(),  config.getListSize()) - Smb2QueryInfoResponse.OVERHEAD ) & ~0x7;
            this.fileId = fileId;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.RequestWithFileId#setFileId(byte[])
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 10:41:31 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java

            return 0;
        }
    
    
        @Override
        public String toString () {
            return new String(
                "Trans2FindNext2[" + super.toString() + ",sid=" + this.sid + ",searchCount=" + getConfig().getListSize() + ",informationLevel=0x"
                        + Hexdump.toHexString(this.informationLevel, 3) + ",resumeKey=0x" + Hexdump.toHexString(this.resumeKey, 4) + ",flags=0x"
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

         */
        public Smb2QueryDirectoryRequest ( Configuration config, byte[] fileId ) {
            super(config, SMB2_QUERY_DIRECTORY);
            this.outputBufferLength = ( Math.min(config.getMaximumBufferSize(), config.getListSize()) - Smb2QueryDirectoryResponse.OVERHEAD ) & ~0x7;
            this.fileId = fileId;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.RequestWithFileId#setFileId(byte[])
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 10:41:31 UTC 2021
    - 6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

            return this.bufferCacheSize;
        }
    
    
        @Override
        public int getListCount () {
            return this.smbListCount;
        }
    
    
        @Override
        public int getListSize () {
            return this.smbListSize;
        }
    
    
        @Override
        public long getAttributeCacheTimeout () {
            return this.smbAttributeExpiration;
        }
    
    
        @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)
  7. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.listSize</tt> (int, default 65435)
         * 
         * @return maximum data size for list/info requests (known overhead is subtracted)
         */
        int getListSize ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.attrExpirationPeriod</tt> (int, 5000)
         * 
         * @return timeout of file attribute cache
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTreeImpl.java

                    tf.getConfig(),
                    "\\",
                    "*",
                    SmbConstants.ATTR_DIRECTORY,
                    tf.getConfig().getListCount(),
                    tf.getConfig().getListSize());
                Trans2FindFirst2Response resp = new Trans2FindFirst2Response(tf.getConfig());
                try {
                    send(req, resp);
                }
                catch ( SmbException e ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/EnumTest.java

            int numFiles = 100;
            CIFSContext ctx = getContext();
            ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) {
    
                @Override
                public int getListSize () {
                    return 1024;
                }
            });
            ctx = withTestNTLMCredentials(ctx);
            try ( SmbResource root = ctx.get(getTestShareURL());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top