Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for writable (0.23 sec)

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

            if (isDirectory()) {
                path += '/';
            }
            return path;
        }
    
    /**
     * Retrieve the time this <code>SmbFile</code> was created. The value
     * returned is suitable for constructing a {@link java.util.Date} object
     * (i.e. seconds since Epoch 1970). Times should be the same as those
     * reported using the properties dialog of the Windows Explorer program.
     *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/jcifs/SmbResource.java

    
        /**
         * Return the attributes of this file. Attributes are represented as a
         * bitset that must be masked with <tt>ATTR_*</tt> constants to determine
         * if they are set or unset. The value returned is suitable for use with
         * the <tt>setAttributes()</tt> method.
         *
         * @return the <tt>ATTR_*</tt> attributes associated with this file
         * @throws CIFSException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SID.java

         * </tt>
         */
        public int getType() {
            if (origin_server != null)
                resolveWeak();
            return type;
        }
    
        /**
         * Return text represeting the SID type suitable for display to
         * users. Text includes 'User', 'Domain group', 'Local group', etc.
         */
        public String getTypeText() {
            if (origin_server != null)
                resolveWeak();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpFilter.java

                this.dcListExpiration = 0;
            }
            while ( retry-- > 0 );
    
            this.dcListExpiration = now + 1000 * 60 * 15; /* 15 min */
            throw new UnknownHostException("Failed to negotiate with a suitable domain controller for " + domain);
        }
    
    
        private static NtlmChallenge interrogate ( CIFSContext tf, Address addr ) throws SmbException {
            UniAddress dc = new UniAddress(addr);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbSession.java

                } while (retry-- > 0);
    
                dc_list_expiration = now + 1000 * 60 * 15; /* 15 min */
    }
    
            throw new UnknownHostException(
                    "Failed to negotiate with a suitable domain controller for " + DOMAIN );
        }
    
        public static byte[] getChallenge( UniAddress dc )
                    throws SmbException, UnknownHostException {
            return getChallenge(dc, 0);
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  6. LICENSE

        Library will not necessarily be able to recompile the application
        to use the modified definitions.)
    
        b) Use a suitable shared library mechanism for linking with the
        Library.  A suitable mechanism is one that (1) uses at run time a
        copy of the library already present on the user's computer system,
        rather than copying library functions into the executable, and (2)
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SID.java

         * resolved in which case the numeric representation is returned.
         * 
         * @return the domain name
         */
        String getDomainName ();
    
    
        /**
         * Return text representing the SID type suitable for display to
         * users. Text includes 'User', 'Domain group', 'Local group', etc.
         * 
         * @return textual representation of type
         */
        String getTypeText ();
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
Back to top