Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for Inception (0.19 sec)

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

        /* Build a connection. Only one thread will ever call this method at
         * any one time. If this method throws an exception or the connect timeout
         * expires an encapsulating TransportException will be thrown from connect
         * and the transport will be in error.
         */
    
        protected abstract void doConnect() throws Exception;
    
        /* Tear down a connection. If the hard parameter is true, the diconnection
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/PrintingRunListener.java

    @ThreadSafe
    public class PrintingRunListener extends RunListener {
    
        @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 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                            resp.exception(ex);
                            iterator.remove();
                            notified = true;
    
                        }
                        if ( notified ) {
                            log.debug("Notified clients");
                        }
                        else {
                            log.debug("Exception without a request pending", ex);
                        }
    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)
  4. src/main/java/jcifs/smb1/http/Handler.java

                            } catch (Exception ex) { }
                            if (handlerClass == null) {
                                handlerClass = ClassLoader.getSystemClassLoader(
                                        ).loadClass(className);
                            }
                            handler = (URLStreamHandler) handlerClass.newInstance();
                        } catch (Exception ex) { }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/NamingTest.java

        @Test
        @Ignore
        public void testWhitespacePrefix () throws Exception {
            runFilenameTest(" wsprefix");
        }
    
    
        @Test
        @Ignore
        public void testWhitespaceSuffix () throws Exception {
            runFilenameTest("wssuffix ");
        }
    
    
        @Test
        @Ignore
        public void testHash () throws Exception {
            runFilenameTest("hash#tag");
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 06 10:48:05 GMT 2020
    - 7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                if( log.level > 0 )
                    uee.printStackTrace( log );
            }
            MD4 md4 = new MD4();
            md4.update( uni );
            try {
                md4.digest(p21, 0, 16);
            } catch (Exception ex) {
                if( log.level > 0 )
                    ex.printStackTrace( log );
            }
            E( p21, challenge, p24 );
            return p24;
        }
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                int index = response.indexOf(' ');
                while (response.charAt(index) == ' ') index++;
                return Integer.parseInt(response.substring(index, index + 3));
            } catch (Exception ex) {
                throw new IOException(ex.getMessage());
            }
        }
    
        private void doHandshake() throws IOException {
            connect();
            try {
    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)
  8. src/main/java/jcifs/util/Crypto.java

            }
            provider = new BouncyCastleProvider();
            return provider;
        }
    
        /**
         * Initialize Provider Instance with customProvider
         * @param customProvider
         * @throws Exception if Provider has already been initialized.
         */
        public static void initProvider(Provider customProvider) throws CIFSUnsupportedCryptoException {
            if (provider != null) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Aug 17 17:34:29 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbException.java

    import jcifs.smb1.util.Hexdump;
    
    import java.io.PrintWriter;
    
    /**
     * There are hundreds of error codes that may be returned by a CIFS
     * server. Rather than represent each with it's own <code>Exception</code>
     * class, this class represents all of them. For many of the popular
     * error codes, constants and text messages like "The device is not ready"
     * are provided.
     * <p>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/PACTest.java

            Assert.assertEquals(expect, Hexdump.toHexString(expanded).toLowerCase(Locale.ROOT));
        }
    
    
    
        @Test
        public void testParseSPENGOToken() throws Exception {
            /*
            negTokenInit
        mechTypes: 2 items
            MechType: 1.2.840.113554.1.2.2 (KRB5 - Kerberos 5)
            MechType: 1.2.840.48018.1.2.2 (MS KRB5 - Microsoft Kerberos 5)
        Padding: 6
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
Back to top