Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for whether (0.17 sec)

  1. src/main/java/jcifs/util/transport/Transport.java

    
        /**
         * 
         * @return whether the transport is disconnected
         */
        public boolean isDisconnected () {
            return this.state == 4 || this.state == 5 || this.state == 6 || this.state == 0;
        }
    
    
        /**
         * @return whether the transport is marked failed
         */
        public boolean isFailed () {
    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)
  2. src/main/java/jcifs/smb/SID.java

            return toByteArray(this);
        }
    
    
        /**
         * 
         * @return whether the SID is empty (no sub-authorities)
         */
        public boolean isEmpty () {
            return this.sub_authority_count == 0;
        }
    
    
        /**
         * 
         * @return whether the SID is blank (all sub-authorities zero)
         */
        public boolean isBlank () {
            boolean blank = true;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  3. 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)
  4. 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
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/smb/NtlmContext.java

        private Cipher sealServerHandle;
    
    
        /**
         * @param tc
         *            context to use
         * @param auth
         *            credentials
         * @param doSigning
         *            whether signing is requested
         */
        public NtlmContext ( CIFSContext tc, NtlmPasswordAuthenticator auth, boolean doSigning ) {
            this.transportContext = tc;
            this.auth = auth;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * 
     * 2) IP Address, NetBIOS name, nodeType, groupName - If however a
     * legal NetBIOS name string is used a name query request will retreive
     * the IP, node type, and whether or not this NbtAddress represents a
     * group name. This degree of state can be obtained with a Name Query
     * Request or Node Status Request.
     * 
     * 3) All - The NbtAddress will be populated with all state such as mac
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResource.java

         * new <tt>SmbResource</tt></i>.
         *
         * @param dest
         *            An <code>SmbResource</code> that represents the new pathname
         * @param replace
         *            Whether an existing destination file should be replaced (only supported with SMB2)
         * @throws CIFSException
         * @throws NullPointerException
         *             If the <code>dest</code> argument is <code>null</code>
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  10. 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)
Back to top