Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Mishin (0.18 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                case 2:
                    if ( ch == '[' ) {
                        String server = str.substring(mark, si).trim();
                        if ( server.length() == 0 ) {
                            // this can also be a v6 address within brackets, look ahead required
                            int nexts = str.indexOf('[', si + 1);
                            int nexte = str.indexOf(']', si);
                            if ( nexts >= 0 && nexte >= 0 && nexte == nexts - 1 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtStatus.java

     */
    
    package jcifs.smb;
    
    
    @SuppressWarnings ( "javadoc" )
    public interface NtStatus {
    
        /*
         * Don't bother to edit this. Everything within the interface
         * block is automatically generated from the ntstatus package.
         */
    
        public static final int NT_STATUS_OK = 0x00000000;
        public static final int NT_STATUS_PENDING = 0x00000103;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ACE.java

        }
        /**
         * Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
         * <p>
         * Note: For reasons not fully understood, <tt>FLAGS_INHERITED</tt> may
         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
         * ACL editor will rebuild all children ACEs and set this flag accordingly.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                }
                return false;
            }
            exists();
            return ( attributes & ATTR_HIDDEN ) == ATTR_HIDDEN;
        }
    
    /**
     * If the path of this <code>SmbFile</code> falls within a DFS volume,
     * this method will return the referral path to which it maps. Otherwise
     * <code>null</code> is returned.
     */
    
        public String getDfsPath() throws SmbException {
            resolveDfs(null);
    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)
  5. src/test/java/jcifs/tests/FileAttributesTest.java

                f.getDiskFreeSpace();
            }
        }
    
    
        public void assertCloseTime ( long timeMs ) {
            if ( timeMs - System.currentTimeMillis() > 5 * 60 * 1000L ) {
                assertTrue("Time is not within 30s, check clocks " + new Date(timeMs), false);
            }
        }
    
    
        @Test
        public void testLastModified () throws CIFSException, MalformedURLException, UnknownHostException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/WinError.java

     */
    
    package jcifs.smb;
    
    
    @SuppressWarnings ( "javadoc" )
    public interface WinError {
    
        /*
         * Don't bother to edit this. Everything within the interface
         * block is automatically generated from the ntstatus package.
         */
    
        public static final int ERROR_SUCCESS = 0;
        public static final int ERROR_ACCESS_DENIED = 5;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbResourceLocator.java

         *         <code>SmbFile</code> refers to the root <code>smb://</code> resource.
         */
        String getServer ();
    
    
        /**
         * If the path of this <code>SmbFile</code> falls within a DFS volume,
         * this method will return the referral path to which it maps. Otherwise
         * <code>null</code> is returned.
         * 
         * @return URL to the DFS volume
         */
        String getDfsPath ();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

    
        /**
         * This method will delete the file or directory specified by this
         * <code>SmbResource</code>. If the target is a directory, the contents of
         * the directory will be deleted as well. If a file within the directory or
         * it's sub-directories is marked read-only, the read-only status will
         * be removed and the file will be deleted.
         * 
         * If the file has been opened before, it will be closed.
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ACE.java

    
        /**
         * Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
         * <p>
         * Note: For reasons not fully understood, <tt>FLAGS_INHERITED</tt> may
         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
         * ACL editor will rebuild all children ACEs and set this flag accordingly.
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

         * @return The UNC path.
         */
        public String getCanonicalUncPath () {
            return this.fileLocator.getCanonicalURL();
        }
    
    
        /**
         * If the path of this <code>SmbFile</code> falls within a DFS volume,
         * this method will return the referral path to which it maps. Otherwise
         * <code>null</code> is returned.
         * 
         * @return URL to the DFS volume
         * @throws SmbException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top