Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resolver (0.14 sec)

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

     * the security descriptor associated with this file or directory.
     * <p>
     * Initially, the SIDs within each ACE will not be resolved however when
     * <tt>getType()</tt>, <tt>getDomainName()</tt>, <tt>getAccountName()</tt>,
     * or <tt>toString()</tt> is called, the names will attempt to be
     * resolved. If the names cannot be resolved (e.g. due to temporary
     * network failure), the said methods will return default values (usually
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/jcifs/smb/SmbFile.java

                }
    
                String server = this.fileLocator.getServerWithDfs();
                if ( resolve ) {
                    try {
                        ownerUser.resolve(server, getContext());
                    }
                    catch ( IOException e ) {
                        log.warn("Failed to resolve SID " + ownerUser.toString(), e);
                    }
                }
                else {
    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)
Back to top