Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for whether (0.17 sec)

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

         *             if a network error occurs
         */
    
        @Override
        public void write ( byte[] b ) throws IOException {
            write(b, 0, b.length);
        }
    
    
        /**
         * @return whether the stream is open
         */
        public boolean isOpen () {
            return this.handle != null && this.handle.isValid();
        }
    
    
        protected synchronized SmbFileHandleImpl ensureOpen () throws CIFSException {
    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)
  2. src/main/java/jcifs/Configuration.java

         * 
         * @return whether a authentication failure during DFS resolving will throw an exception
         */
        boolean isDfsStrictView ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false)
         * 
         * @return whether DFS lookup is disabled
         */
        boolean isDfsDisabled ();
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

         * 
         */
        protected BaseConfiguration () throws CIFSException {
            this(false);
        }
    
    
        /**
         * 
         * @param initDefaults
         *            whether to initialize defaults based on other settings
         * @throws CIFSException
         */
        public BaseConfiguration ( boolean initDefaults ) throws CIFSException {
            if ( initDefaults ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/smb/SmbTreeImpl.java

            return this.share;
        }
    
    
        /**
         * @return whether this is a DFS share
         */
        public boolean isDfs () {
            return this.inDfs;
        }
    
    
        /**
         * 
         */
        void markDomainDfs () {
            this.inDomainDfs = true;
        }
    
    
        /**
         * @return whether this tree was accessed using domain DFS
         */
        public boolean isInDomainDfs () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                throw new MalformedURLException("Name must not be empty");
            }
            return name;
        }
    
    
        /**
         * @param nonPooled
         *            whether this file will use an exclusive connection
         */
        protected void setNonPooled ( boolean nonPooled ) {
            this.treeConnection.setNonPooled(nonPooled);
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTransportImpl.java

            if ( r == null ) {
                throw new SmbException("Connection did not complete, failed to get negotiation response");
            }
            return r;
        }
    
    
        /**
         * @return whether this is SMB2 transport
         * @throws SmbException
         */
        @Override
        public boolean isSMB2 () throws SmbException {
            return this.smb2 || getNegotiateResponse() instanceof Smb2NegotiateResponse;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbSessionImpl.java

            return this.credentials;
        }
    
    
        /**
         * @return whether the session is connected
         */
        public boolean isConnected () {
            return !this.transport.isDisconnected() && this.connectionState.get() == 2;
        }
    
    
        /**
         * @return whether the session has been lost
         */
        public boolean isFailed () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    : this.transportContext.getConfig().getWinsServers()[ this.nbnsIndex ];
        }
    
    
        /**
         * 
         * @param svr
         * @return whether the given address is a WINS server
         */
        protected boolean isWINS ( InetAddress svr ) {
            for ( int i = 0; svr != null && i < this.transportContext.getConfig().getWinsServers().length; i++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top