Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for exclusive (1.21 sec)

  1. src/main/java/jcifs/SmbTransportPool.java

        /**
         * @param tf
         * @param name
         * @param port
         * @param exclusive
         * @param forceSigning
         * @return a connected transport
         * @throws UnknownHostException
         * @throws IOException
         */
        SmbTransport getSmbTransport ( CIFSContext tf, String name, int port, boolean exclusive, boolean forceSigning )
                throws UnknownHostException, IOException;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 09:02:44 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            if ( port <= 0 ) {
                port = SmbConstants.DEFAULT_PORT;
            }
            synchronized ( this.connections ) {
                cleanup();
                if ( log.isTraceEnabled() ) {
                    log.trace("Exclusive " + nonPooled + " enforced signing " + forceSigning);
                }
                if ( !nonPooled && tc.getConfig().getSessionLimit() != 1 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

                }
            }
        }
    
    
        /**
         * Use a exclusive connection for this tree
         * 
         * If an exclusive connection is used the caller must make sure that the tree handle is kept alive,
         * otherwise the connection will be disconnected once the usage drops to zero.
         * 
         * @param np
         *            whether to use an exclusive connection
         */
        void setNonPooled ( boolean np ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbPipeResource.java

        public static final int PIPE_TYPE_TRANSACT = 0x0200;
    
        /**
         * Pipe is used for DCE
         */
        public static final int PIPE_TYPE_DCE_TRANSACT = 0x0200 | 0x0400;
    
        /**
         * Pipe should use it's own exclusive transport connection
         */
        public static final int PIPE_TYPE_UNSHARED = 0x800;
    
    
        /**
         * @return the type of the pipe
         */
        int getPipeType ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

     * the smb URL syntax.
    <p>
    The second parameter specifies how the file should be shared. If
    <code>SmbFile.FILE_NO_SHARE</code> is specified the client will
    have exclusive access to the file. An additional open command
    from jCIFS or another application will fail with the "file is being
    accessed by another process" error. The <code>FILE_SHARE_READ</code>,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            return getHandle(url, tc, false);
        }
    
    
        /**
         * Get a handle to a service
         * 
         * @param url
         * @param tc
         * @param unshared
         *            whether an exclusive connection should be used
         * @return a DCERPC handle for the given url
         * @throws MalformedURLException
         * @throws DcerpcException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbNamedPipe.java

         * operator <code>|</code>. See the examples listed above.
         * 
         * @param url
         * @param pipeType
         * @param unshared
         *            whether to use an exclusive connection for this pipe
         * @param tc
         * @throws MalformedURLException
         */
    
        public SmbNamedPipe ( String url, int pipeType, boolean unshared, CIFSContext tc ) throws MalformedURLException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/UniAddress.java

            return obj instanceof UniAddress && this.addr.equals( ( (UniAddress) obj ).addr);
        }
    
    
        /**
         * Guess first called name to try for session establishment. This
         * method is used exclusively by the <tt>jcifs.smb</tt> package.
         * 
         * @return the guessed name
         */
        @Override
        public String firstCalledName () {
            if ( this.addr instanceof NbtAddress ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResource.java

         * @throws CIFSException
         */
        SmbRandomAccess openRandomAccess ( String mode ) throws CIFSException;
    
    
        /**
         * Opens an output stream writing to the file (write only, exclusive write access)
         * 
         * @param append
         *            whether to append to or truncate the input
         * @param openFlags
         *            flags for open operation
         * @param access
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                }
            }
    
            /*
             * If a local hostname was not provided a name like
             * JCIFS34_172_A6 will be dynamically generated for the
             * client. This is primarily (exclusively?) used as a
             * CallingName during session establishment.
             */
            String localHostname = tc.getConfig().getNetbiosHostname();
            if ( localHostname == null || localHostname.length() == 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
Back to top