Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for ie (0.01 sec)

  1. src/main/java/jcifs/smb1/smb1/TransactNamedPipeInputStream.java

            synchronized (lock) {
                try {
                    while (used == 0) {
                        lock.wait();
                    }
                } catch (final InterruptedException ie) {
                    throw new IOException(ie.getMessage());
                }
                result = pipe_buf[beg_idx] & 0xFF;
                beg_idx = (beg_idx + 1) % pipe_buf.length;
            }
            return result;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/transport/Transport.java

                } catch (final IOException ioe2) {
                    ioe2.printStackTrace(log);
                }
                throw ioe;
            } catch (final InterruptedException ie) {
                throw new TransportException(ie);
            } finally {
                response_map.remove(request);
            }
        }
    
        private void loop() {
            while (thread == Thread.currentThread()) {
                try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

                        return;
                    }
                    try {
                        transport.wait();
                    } catch (final InterruptedException ie) {
                        throw new SmbException(ie.getMessage(), ie);
                    }
                }
                connectionState = 1; // trying ...
    
                try {
                    transport.connect();
    
                    /*
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbTree.java

                        return;
                    }
                    try {
                        session.transport.wait();
                    } catch (final InterruptedException ie) {
                        throw new SmbException(ie.getMessage(), ie);
                    }
                }
                connectionState = 1; // trying ...
    
                try {
                    /* The hostname to use in the path is only known for
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
                try {
                    log.debug("Waiting for transport");
                    transport.wait();
                } catch (final InterruptedException ie) {
                    throw new SmbException(ie.getMessage(), ie);
                }
            }
            return cs;
        }
    
        /**
         *
         * {@inheritDoc}
         *
         * @see jcifs.smb.SmbTreeInternal#connectLogon(jcifs.CIFSContext)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/MD4.java

            }
        }
    
        /**
         * Continues an MD4 message digest using the input byte.
         */
        @Override
        public void engineUpdate(final byte b) {
            // compute number of bytes still unhashed; ie. present in buffer
            final int i = (int) (count % BLOCK_LENGTH);
            count++; // update number of bytes
            buffer[i] = b;
            if (i == BLOCK_LENGTH - 1) {
                transform(buffer, 0);
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/Transport.java

                    ioe.addSuppressed(ioe2);
                    log.info("disconnect failed", ioe2);
                }
                throw ioe;
            } catch (final InterruptedException ie) {
                throw new TransportException(ie);
            } finally {
                Response curResp = response;
                Request curReq = request;
                while (curResp != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbCopyUtil.java

                            while (!w.isReady()) {
                                try {
                                    w.wait();
                                } catch (final InterruptedException ie) {
                                    throw new SmbException(dest.getURL().toString(), ie);
                                }
                            }
                            w.checkException();
    
                            if (read <= 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                            response.received = false;
                            timeout -= System.currentTimeMillis() - start;
                        }
    
                    } catch (final InterruptedException ie) {
                        throw new IOException(ie.getMessage());
                    } finally {
                        responseTable.remove(nid);
                    }
    
                    synchronized (LOCK) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                            response.received = false;
                            timeout -= System.currentTimeMillis() - start;
                        }
    
                    } catch (final InterruptedException ie) {
                        throw new InterruptedIOException();
                    } finally {
                        this.responseTable.remove(nid);
                    }
    
                    synchronized (this.LOCK) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
Back to top