Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for causal (0.17 sec)

  1. src/main/java/jcifs/spnego/SpnegoException.java

        /**
         * @param message
         * @param cause
         */
        public SpnegoException ( String message, Throwable cause ) {
            super(message, cause);
        }
    
    
        /**
         * @param message
         */
        public SpnegoException ( String message ) {
            super(message);
        }
    
    
        /**
         * @param cause
         */
        public SpnegoException ( Throwable cause ) {
            super(cause);
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFileOutputStream.java

            this.useNTSmbs = th.hasCapability(SmbConstants.CAP_NT_SMBS);
            if ( !this.useNTSmbs ) {
                log.debug("No support for NT SMBs");
            }
    
            // there seems to be a bug with some servers that causes corruption if using signatures +
            // CAP_LARGE_WRITE
            if ( th.hasCapability(SmbConstants.CAP_LARGE_WRITEX) && !th.areSignaturesActive() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                    this.state = 6;
                    ioe = ioe0;
                }
            case 4: /* failed to connect - reset the transport */
                // thread is cleaned up by connect routine, joining it here causes a deadlock
                this.thread = null;
                this.state = 6;
                break;
            default:
                log.error("Invalid state: " + this.state);
                this.thread = null;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/CIFSException.java

    
        /**
         * 
         * @param message
         * @param cause
         */
        public CIFSException ( String message, Throwable cause ) {
            super(message, cause);
        }
    
    
        /**
         * 
         * @param message
         */
        public CIFSException ( String message ) {
            super(message);
        }
    
    
        /**
         * 
         * @param cause
         */
        public CIFSException ( Throwable cause ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/EnumTest.java

        public static Collection<Object> configs () {
            return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31");
        }
    
    
        @Ignore ( "This causes a connection to whatever local master browser is available, config may be incompatible with it" )
        @Test
        public void testBrowse () throws MalformedURLException, CIFSException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SMBProtocolDowngradeException.java

        }
    
    
        /**
         * @param message
         * @param cause
         */
        public SMBProtocolDowngradeException ( String message, Throwable cause ) {
            super(message, cause);
        }
    
    
        /**
         * @param message
         */
        public SMBProtocolDowngradeException ( String message ) {
            super(message);
        }
    
    
        /**
         * @param cause
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbAuthException.java

            super(errcode, null);
        }
    
    
        SmbAuthException ( String message ) {
            super(message);
        }
    
    
        SmbAuthException ( String message, Throwable cause ) {
            super(message, cause);
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbException.java

        }
    
    
        /**
         * 
         * @return status code
         */
        public int getNtStatus () {
            return this.status;
        }
    
    
        /**
         * 
         * @return cause
         */
        @Deprecated
        public Throwable getRootCause () {
            return this.getCause();
        }
    
    
        /**
         * @param e
         * @return a CIFS exception wrapped in an SmbException
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 07:16:55 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/FileNotifyInformation.java

        /**
         * Any file name change in the watched directory or subtree causes a change notification wait operation to return.
         * Changes include renaming, creating, or deleting a file.
         */
        public static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001;
    
        /**
         * Any directory-name change in the watched directory or subtree causes a change notification wait operation to
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/SMBProtocolDecodingException.java

        }
    
    
        /**
         * @param message
         * @param cause
         */
        public SMBProtocolDecodingException ( String message, Throwable cause ) {
            super(message, cause);
        }
    
    
        /**
         * @param message
         */
        public SMBProtocolDecodingException ( String message ) {
            super(message);
        }
    
    
        /**
         * @param cause
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
Back to top