Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 316 for param (0.16 sec)

  1. src/main/java/jcifs/SmbTransportPool.java

                boolean exclusive );
    
    
        /**
         * @param tc
         *            context to use
         * @param address
         * @param port
         * @param localAddr
         * @param localPort
         * @param hostName
         * @param exclusive
         *            whether to acquire an unshared connection
         * @param forceSigning
         *            whether to enforce SMB signing on this connection
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComWrite.java

        private byte[] b;
    
    
        /**
         * 
         * @param config
         */
        public SmbComWrite ( Configuration config ) {
            super(config, SMB_COM_WRITE);
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param offset
         * @param remaining
         * @param b
         * @param off
         * @param len
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

    
        /**
         * 
         * @param config
         */
        public SmbComWriteAndX ( Configuration config ) {
            super(config, SMB_COM_WRITE_ANDX, null);
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param offset
         * @param remaining
         * @param b
         * @param off
         * @param len
         * @param andx
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/SMBSigningDigest.java

         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data
         *            The data.
         * @param offset
         *            The starting offset at which the SMB header begins.
         * @param length
         *            The length of the SMB data starting at offset.
         * @param request
         *            request message
         * @param response
         *            response message
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

        private int signSequence;
    
    
        /**
         * 
         * @param macSigningKey
         * @param bypass
         */
        public SMB1SigningDigest ( byte[] macSigningKey, boolean bypass ) {
            this(macSigningKey, bypass, 0);
        }
    
    
        /**
         * 
         * @param macSigningKey
         * @param bypass
         * @param initialSequence
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 10.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

         * 
         * @param fqdn
         */
        void fixupHost ( String fqdn );
    
    
        /**
         * Possibly appends the given domain name to the host name if it is currently unqualified
         * 
         * @param domain
         */
        void fixupDomain ( String domain );
    
    
        /**
         * Reduces path consumed by the given value
         * 
         * @param i
         */
        void stripPathConsumed ( int i );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/DialectVersion.java

        }
    
    
        /**
         * 
         * @param a
         * @param b
         * @return smaller of the two versions
         */
        public static DialectVersion min ( DialectVersion a, DialectVersion b ) {
            if ( a.atMost(b) ) {
                return a;
            }
            return b;
        }
    
    
        /**
         * 
         * @param a
         * @param b
         * @return larger of the two versions
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java

        }
    
    
        /**
         * @param data
         *            the data to set
         * @param offset
         * @param length
         */
        public void setData ( byte[] data, int offset, int length ) {
            this.data = data;
            this.dataOffset = offset;
            this.dataLength = length;
        }
    
    
        /**
         * @param remainingBytes
         *            the remainingBytes to set
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java

    
    /**
     * @author mbechler
     * @param <T>
     *            request type
     *
     */
    public abstract class ServerMessageBlock2Request <T extends ServerMessageBlock2Response> extends ServerMessageBlock2
            implements CommonServerMessageBlockRequest, Request<T> {
    
        private T response;
        private Integer overrideTimeout;
    
    
        /**
         * @param config
         */
    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)
  10. src/main/java/jcifs/CIFSUnsupportedCryptoException.java

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