Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for void (0.14 sec)

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

                "56be34521d144c88dbb8c733f0e8b3f6");
        }
    
    
        private static void testJavaHMAC ( String key, String data, String expect ) throws GeneralSecurityException {
            testJavaHMAC(key, data.getBytes(StandardCharsets.US_ASCII), expect);
        }
    
    
        private static void testJavaHMAC ( String key, byte[] bytes, String expect ) throws NoSuchAlgorithmException, InvalidKeyException {
    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)
  2. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

            return n;
        }
        public void writeOctetArray(byte[] b, int i, int l) {
            System.arraycopy(b, i, buf, index, l);
            advance(l);
        }
        public void readOctetArray(byte[] b, int i, int l) {
            System.arraycopy(buf, index, b, i, l);
            advance(l);
        }
    
    
        public int getLength() {
            return deferred.length;
        }
        public void setLength(int length) {
    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)
  3. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                this.collector = collector;
            }
    
            public void close() throws IOException {
                stream.close();
                collector.close();
            }
    
            public void flush() throws IOException {
                stream.flush();
                collector.flush();
            }
    
            public void write(byte[] b) throws IOException {
                stream.write(b);
    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)
  4. src/main/java/jcifs/smb1/util/transport/Transport.java

        protected abstract void makeKey( Request request ) throws IOException;
        protected abstract Request peekKey() throws IOException;
        protected abstract void doSend( Request request ) throws IOException;
        protected abstract void doRecv( Response response ) throws IOException;
        protected abstract void doSkip() throws IOException;
    
        public synchronized void sendrecv( Request request,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/NamingTest.java

    
        @Test
        @Ignore
        public void testWhitespaceSuffix () throws Exception {
            runFilenameTest("wssuffix ");
        }
    
    
        @Test
        @Ignore
        public void testHash () throws Exception {
            runFilenameTest("hash#tag");
        }
    
    
        private void runFilenameTest ( String... names ) throws CIFSException, UnknownHostException, MalformedURLException {
    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/test/java/jcifs/tests/NtlmTest.java

     * @author mbechler
     *
     */
    @SuppressWarnings ( "javadoc" )
    public class NtlmTest {
    
        private CIFSContext context;
    
    
        @Before
        public void setUp () {
            this.context = SingletonContext.getInstance();
        }
    
    
        @Test
        public void testParsingType1 () throws IOException {
            int flags = 0x80000000;
            String suppliedDomain = "TESTDOM";
            String suppliedWorkstation = "TESTWS";
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 16 10:38:43 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

         *            the openTimeout to set
         */
        public final void setOpenTimeout ( int openTimeout ) {
            this.openTimeout = openTimeout;
        }
    
    
        /**
         * @param remaining
         *            the remaining to set
         */
        public final void setRemaining ( int remaining ) {
            this.remaining = remaining;
        }
    
    
        void setParam ( int fid, long offset, int maxCount ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/PrintingRunListener.java

    /**
     * @author mbechler
     *
     */
    @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);
    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)
  9. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

        }
    
    
        /**
         * @param flags
         *            the flags to set
         */
        public void setFlags ( int flags ) {
            this.flags = flags;
        }
    
    
        /**
         * @param maxInputResponse
         *            the maxInputResponse to set
         */
        public void setMaxInputResponse ( int maxInputResponse ) {
            this.maxInputResponse = maxInputResponse;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 07:13:17 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/rpc.java

            public short time_hi_and_version;
            public byte clock_seq_hi_and_reserved;
            public byte clock_seq_low;
            public byte[] node;
    
    
            @Override
            public void encode ( NdrBuffer _dst ) throws NdrException {
                _dst.align(4);
                _dst.enc_ndr_long(this.time_low);
                _dst.enc_ndr_short(this.time_mid);
                _dst.enc_ndr_short(this.time_hi_and_version);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 8.8K bytes
    - Viewed (0)
Back to top