Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Runnable (0.23 sec)

  1. src/test/java/jcifs/tests/ConcurrencyTest.java

            List<MutiThreadTestCase> runnables = new ArrayList<>();
            for ( int i = 0; i < 20; i++ ) {
                runnables.add(new MutiThreadTestCase());
            }
            runMultiTestCase(runnables, 60);
        }
    
    
        private void runMultiTestCase ( List<? extends MultiTestCase> testcases, int timeoutSecs ) throws InterruptedException {
            for ( Runnable r : testcases ) {
                this.executor.submit(r);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:40:50 GMT 2021
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

    import jcifs.ResolverType;
    import jcifs.RuntimeCIFSException;
    import jcifs.SmbConstants;
    import jcifs.util.Hexdump;
    
    
    /**
     * 
     * @author mbechler
     *
     */
    public class NameServiceClientImpl implements Runnable, NameServiceClient {
    
        private static final int NAME_SERVICE_UDP_PORT = 137;
    
        static final byte[] UNKNOWN_MAC_ADDRESS = new byte[] {
            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top