Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for already (0.19 sec)

  1. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

                }
    
            }
            log.trace("Pipe already open");
            return this.handle.acquire();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbPipeHandle#getInput()
         */
        @Override
        public SmbPipeInputStream getInput () throws CIFSException {
    
            if ( !this.open ) {
                throw new SmbException("Already closed");
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Crypto.java

         * @param customProvider
         * @throws Exception if Provider has already been initialized.
         */
        public static void initProvider(Provider customProvider) throws CIFSUnsupportedCryptoException {
            if (provider != null) {
                throw new CIFSUnsupportedCryptoException("Provider can't be re-initialized. Provider has already been initialized with "+ provider.getInfo());
            }
            provider = customProvider;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Aug 17 17:34:29 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/DosError.java

            "The pipe has been ended.",
            "The filename, directory name, or volume label syntax is incorrect.",
            "The directory is not empty.",
            "Cannot create a file when that file already exists.",
            "All pipe instances are busy.",
            "The pipe is being closed.",
            "No process is on the other end of the pipe.",
            "More data is available.",
            "This user account has expired.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/Handler.java

            synchronized (PROTOCOL_HANDLERS) {
                if (Handler.factory != null) {
                    throw new IllegalStateException(
                            "URLStreamHandlerFactory already set.");
                }
                PROTOCOL_HANDLERS.clear();
                Handler.factory = factory;
            }
        }
    
        /**
         * Returns the default HTTP port.
         *
    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)
  5. src/main/java/jcifs/smb1/util/transport/Transport.java

            try {
                switch (state) {
                    case 0:
                        break;
                    case 3:
                        return; // already connected
                    case 4:
                        state = 0;
                        throw new TransportException( "Connection in error", te );
                    default:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Transport.java

            int st = this.state;
            try {
                switch ( st ) {
                case 0:
                    break;
                case 1:
                    // already connecting
                    this.thread.wait(timeout); /* wait for doConnect */
                    st = this.state;
                    switch ( st ) {
                    case 1: /* doConnect never returned */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFileOutputStream.java

                    if ( log.isDebugEnabled() ) {
                        log.debug("File pointer is at " + this.fp);
                    }
                }
                return this.handle;
            }
    
            log.trace("File already open");
            return this.handle.acquire();
        }
    
    
        protected SmbTreeHandleImpl ensureTreeConnected () throws CIFSException {
            return this.file.ensureTreeConnected();
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/DosFileFilter.java

        }
    
    /* This returns true if the file's attributes contain any of the attributes
     * specified for this filter. The wildcard has no influence on this
     * method as the server should have performed that filtering already. The
     * attributes are asserted here only because server file systems may not
     * support filtering by all attributes (e.g. even though ATTR_DIRECTORY was
     * specified the server may still return objects that are not directories).
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/Handler.java

            synchronized ( PROTOCOL_HANDLERS ) {
                if ( Handler.factory != null ) {
                    throw new IllegalStateException("URLStreamHandlerFactory already set.");
                }
                PROTOCOL_HANDLERS.clear();
                Handler.factory = factory;
            }
        }
    
    
        /**
         * @param tc
         *            context to use
         * 
         */
    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)
  10. src/test/java/jcifs/tests/WatchTest.java

                throws InterruptedException, ExecutionException, TimeoutException {
            boolean found = checkInResult(action, name, infos);
            if ( !found ) {
                // retry, the first watch may have already come back before the triggered change was active
                try {
                    setupWatch(w);
                    found = checkInResult(action, name, infos);
                }
                catch ( TimeoutException e ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
Back to top