Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for Kuper (0.14 sec)

  1. src/main/java/jcifs/smb1/util/transport/TransportException.java

        public TransportException() {
        }
        public TransportException( String msg ) {
            super( msg );
        }
        public TransportException( Throwable rootCause ) {
            this.rootCause = rootCause;
        }
        public TransportException( String msg, Throwable rootCause ) {
            super( msg );
            this.rootCause = rootCause;
        }
    
        public Throwable getRootCause() {
            return rootCause;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 958 bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/RequestTimeoutException.java

         */
        public RequestTimeoutException () {
            super();
        }
    
    
        /**
         * @param msg
         * @param rootCause
         */
        public RequestTimeoutException ( String msg, Throwable rootCause ) {
            super(msg, rootCause);
        }
    
    
        /**
         * @param msg
         */
        public RequestTimeoutException ( String msg ) {
            super(msg);
        }
    
    
        /**
         * @param rootCause
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/SpnegoException.java

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

        }
        SmbException( int errcode, Throwable rootCause ) {
            super( getMessageByCode( errcode ));
            status = getStatusByCode( errcode );
            this.rootCause = rootCause;
        }
        SmbException( String msg ) {
            super( msg );
            status = NT_STATUS_UNSUCCESSFUL;
        }
        SmbException( String msg, Throwable rootCause ) {
            super( msg );
            this.rootCause = rootCause;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/PrintingRunListener.java

        @Override
        public void testStarted ( Description description ) throws Exception {
            super.testRunStarted(description);
    
        }
    
    
        @Override
        public void testFinished ( Description description ) throws Exception {
            super.testFinished(description);
            System.err.println("Ran " + description.getDisplayName());
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComClose.java

            super(config, SMB_COM_CLOSE);
            this.fid = fid;
            this.lastWriteTime = lastWriteTime;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb1.ServerMessageBlock#getResponse()
         */
        @Override
        public final SmbComBlankResponse getResponse () {
            return (SmbComBlankResponse) super.getResponse();
        }
    
    
        /**
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java

         * @param filename
         * @param batchCount
         * @param batchSize
         */
        public Trans2FindNext2 ( Configuration config, int sid, int resumeKey, String filename, int batchCount, int batchSize ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_FIND_NEXT2);
            this.sid = sid;
            this.resumeKey = resumeKey;
            this.filename = filename;
            this.informationLevel = Trans2FindFirst2.SMB_FILE_BOTH_DIRECTORY_INFO;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

            super(config, SMB_COM_READ_ANDX);
            this.openTimeout = 0xFFFFFFFF;
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param offset
         * @param maxCount
         * @param andx
         */
        public SmbComReadAndX ( Configuration config, int fid, long offset, int maxCount, ServerMessageBlock andx ) {
            super(config, SMB_COM_READ_ANDX, andx);
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NameQueryRequest.java

     */
    
    package jcifs.netbios;
    
    
    import jcifs.Configuration;
    
    
    class NameQueryRequest extends NameServicePacket {
    
        NameQueryRequest ( Configuration config, Name name ) {
            super(config);
            this.questionName = name;
            this.questionType = NB;
        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDescResponse.java

    import java.io.IOException;
    
    class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse {
    
        SecurityDescriptor securityDescriptor;
    
        NtTransQuerySecurityDescResponse() {
            super();
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeParametersWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.1K bytes
    - Viewed (0)
Back to top