Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for Hoolehan (0.6 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        }
    
        public void setDoInput(boolean doInput) {
            connection.setDoInput(doInput);
            this.doInput = doInput;
        }
    
        public boolean getDoInput() {
            return connection.getDoInput();
        }
    
        public void setDoOutput(boolean doOutput) {
            connection.setDoOutput(doOutput);
            this.doOutput = doOutput;
        }
    
        public boolean getDoOutput() {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

         * this transport.
         */
    
        protected abstract boolean doDisconnect ( boolean hard, boolean inUse ) throws IOException;
    
    
        /**
         * Connect the transport
         * 
         * @param timeout
         * @return whether the transport was connected
         * @throws TransportException
         */
        public synchronized boolean connect ( long timeout ) throws TransportException {
            int st = this.state;
    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)
  3. src/main/java/jcifs/smb1/dcerpc/UnicodeString.java

     */
    
    package jcifs.smb1.dcerpc;
    
    public class UnicodeString extends rpc.unicode_string {
    
        boolean zterm;
    
        public UnicodeString(boolean zterm) {
            this.zterm = zterm;
        }
        public UnicodeString(rpc.unicode_string rus, boolean zterm) {
            this.length = rus.length;
            this.maximum_length = rus.maximum_length;
            this.buffer = rus.buffer;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

            return getNegotiatedMpxCount();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#canReuse(jcifs.CIFSContext, boolean)
         */
        @Override
        public boolean canReuse ( CIFSContext tc, boolean forceSigning ) {
            return this.getConfig().equals(tc.getConfig());
        }
    
    
        /**
         * @return the dialectIndex
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

        private static final Logger log = LoggerFactory.getLogger(SmbPipeHandleImpl.class);
    
        private final SmbNamedPipe pipe;
        private final boolean transact;
        private final boolean call;
    
        private final int openFlags;
        private final int access;
        private volatile boolean open = true;
    
        private SmbFileHandleImpl handle;
        private SmbPipeOutputStream output;
        private SmbPipeInputStream input;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 10.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/NetbiosAddress.java

         *            context to use
         * @return whether the given address is a group address
         *
         * @throws UnknownHostException
         *             if the host cannot be resolved to find out.
         */
        boolean isGroupAddress ( CIFSContext tc ) throws UnknownHostException;
    
    
        /**
         * Checks the node type of this address.
         * 
         * @param tc
         *            context to use
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java

     * 
     */
    public class SmbComNegotiate extends ServerMessageBlock implements SmbNegotiationRequest {
    
        private final boolean signingEnforced;
        private String[] dialects;
    
    
        /**
         * 
         * @param config
         * @param signingEnforced
         */
        public SmbComNegotiate ( Configuration config, boolean signingEnforced ) {
            super(config, SMB_COM_NEGOTIATE);
            this.signingEnforced = signingEnforced;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/transport/Transport.java

                    }
                } catch( Exception ex ) {
                    String msg = ex.getMessage();
                    boolean timeout = msg != null && msg.equals( "Read timed out" );
                    /* If just a timeout, try to disconnect gracefully
                     */
                    boolean hard = timeout == false;
    
                    if (!timeout && log.level >= 3)
                        ex.printStackTrace( log );
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

    /**
     * This <code>OutputStream</code> can write bytes to a file on an SMB file server.
     */
    
    public class SmbFileOutputStream extends OutputStream {
    
        private SmbFile file;
        private boolean append, useNTSmbs;
        private int openFlags, access, writeSize;
        private long fp;
        private byte[] tmp = new byte[1];
        private SmbComWriteAndX reqx;
        private SmbComWriteAndXResponse rspx;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 9.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFileOutputStream.java

     */
    
    public class SmbFileOutputStream extends OutputStream {
    
        private static final Logger log = LoggerFactory.getLogger(SmbFileOutputStream.class);
    
        private SmbFile file;
        private boolean append, useNTSmbs;
        private int openFlags, access, writeSize, writeSizeFile;
        private long fp;
        private byte[] tmp = new byte[1];
        private SmbComWriteAndX reqx;
        private SmbComWriteAndXResponse rspx;
    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)
Back to top