Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isUseBatching (0.12 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: 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/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;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

        /**
         *
         * Property {@code jcifs.smb.client.useBatching} (boolean, default false)
         *
         * @return whether to enable support for SMB1 AndX command batching
         */
        boolean isUseBatching();
    
        /**
         *
         * Property {@code jcifs.smb.client.nativeOs} (string, default {@code os.name})
         *
         * @return OS string to report
         */
        String getNativeOs();
    
        /**
    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.requireSecureNegotiate;
        }
    
        @Override
        public boolean isPort139FailoverEnabled() {
            return this.port139FailoverEnabled;
        }
    
        @Override
        public boolean isUseBatching() {
            return this.useBatching;
        }
    
        @Override
        public boolean isUseUnicode() {
            return this.useUnicode;
        }
    
        @Override
        public boolean isForceUnicode() {
    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