Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isAllowCompound (0.36 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java

         */
        @Override
        public boolean allowChain ( CommonServerMessageBlockRequest next ) {
            return getConfig().isAllowCompound(getClass().getSimpleName()) && getConfig().isAllowCompound(next.getClass().getSimpleName());
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#createCancel()
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getBatchLimit(cmd);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isAllowCompound(java.lang.String)
         */
        @Override
        public boolean isAllowCompound ( String command ) {
            return this.delegate.isAllowCompound(command);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isTraceResourceUsage()
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  3. src/main/java/jcifs/config/BaseConfiguration.java

                return set;
            }
            return 1;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isAllowCompound(java.lang.String)
         */
        @Override
        public boolean isAllowCompound ( String command ) {
            if ( this.disallowCompound == null ) {
                return true;
            }
            return !this.disallowCompound.contains(command);
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/Configuration.java

         */
        boolean isTraceResourceUsage ();
    
    
        /**
         * @param command
         * @return whether to allow creating compound requests with that command
         */
        boolean isAllowCompound ( String command );
    
    
        /**
         * Machine identifier
         * 
         * ClientGuid, ... are derived from this value.
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top