Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isUseBatching (0.27 sec)

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

            return this.delegate.isUseUnicode();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#isUseBatching()
         */
        @Override
        public boolean isUseBatching () {
            return this.delegate.isUseBatching();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNativeOs()
         */
        @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)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

             * methods that the next part should be sent. This is a
             * very indirect and simple batching control mechanism.
             */
    
            if ( this.andx == null || !getConfig().isUseBatching() || this.batchLevel >= getBatchLimit(getConfig(), (byte) this.andx.getCommand()) ) {
                this.andxCommand = (byte) 0xFF;
                this.andx = null;
    
                dst[ start + ANDX_COMMAND_OFFSET ] = (byte) 0xFF;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        }
    
    
        @Override
        public boolean isPort139FailoverEnabled () {
            return this.port139FailoverEnabled;
        }
    
    
        @Override
        public boolean isUseBatching () {
            return this.useBatching;
        }
    
    
        @Override
        public boolean isUseUnicode () {
            return this.useUnicode;
        }
    
    
        @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)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.useBatching</tt> (boolean, default false)
         * 
         * @return whether to enable support for SMB1 AndX command batching
         */
        boolean isUseBatching ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.nativeOs</tt> (string, default <tt>os.name</tt>)
         * 
         * @return OS string to report
         */
        String getNativeOs ();
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top