Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pids (0.12 sec)

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

         * @throws IOException
         */
        public void resolve ( String authorityServerName, CIFSContext tc ) throws IOException {
            SID[] sids = new SID[1];
            sids[ 0 ] = this;
            tc.getSIDResolver().resolveSids(tc, authorityServerName, sids);
        }
    
    
        void resolveWeak () {
            if ( this.origin_server != null ) {
                try {
    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)
  2. src/main/java/jcifs/SID.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs;
    
    
    /**
     * A Windows SID is a numeric identifier used to represent Windows
     * accounts. SIDs are commonly represented using a textual format such as
     * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt> but they may
     * also be resolved to yield the name of the associated Windows account
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SID.java

                    sids[offset + si].acctName = sid.acctName;
                } else {
                    list.add(sids[offset + si]);
                }
            }
    
            if (list.size() > 0) {
                sids = (SID[])list.toArray(new SID[0]);
                SID.resolveSids0(authorityServerName, auth, sids);
                for (si = 0; si < sids.length; si++) {
                    sid_cache.put(sids[si], sids[si]);
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
Back to top