Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Runnable (0.15 sec)

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

     * disconnecting, sending, and receiving can be syncronized
     * properly. Apparatus is provided to send and receive requests
     * concurrently.
     */
    
    public abstract class Transport implements Runnable {
    
        static int id = 0;
        static LogStream log = LogStream.getInstance();
    
        public static int readn( InputStream in,
                    byte[] b,
                    int off,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/Handler.java

                        if (handler != null) break;
                    }
                }
                if (handler == null) {
                    throw new IOException(
                            "Unable to find default handler for protocol: " +
                                    protocol);
                }
                PROTOCOL_HANDLERS.put(protocol, handler);
                return handler;
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/Handler.java

                        }
                        if ( handler != null )
                            break;
                    }
                }
                if ( handler == null ) {
                    throw new IOException("Unable to find default handler for protocol: " + protocol);
                }
                PROTOCOL_HANDLERS.put(protocol, handler);
                return handler;
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/TestLocking.java

    package jcifs.smb1.smb1;
    
    import java.io.InputStream;
    import java.io.IOException;
    
    public class TestLocking implements Runnable
    {
    
        int numThreads = 1;
        int numIter = 1;
        long delay = 100;
        String url = null;
        int numComplete = 0;
        long ltime = 0L;
    
        public void run()
        {
            try {
                SmbFile f = new SmbFile(url);
                SmbFile d = new SmbFile(f.getParent());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.4K bytes
    - Viewed (0)
Back to top