Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            return this.acctName;
        }
    
    
        @Override
        public int hashCode () {
            int hcode = this.identifier_authority[ 5 ];
            for ( int i = 0; i < this.sub_authority_count; i++ ) {
                hcode += 65599 * this.sub_authority[ i ];
            }
            return hcode;
        }
    
    
        @Override
        public boolean equals ( Object obj ) {
            if ( obj instanceof SID ) {
    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

         * <td>SID_TYPE_INVALID</td>
         * <td>Invalid</td>
         * </tr>
         * <tr>
         * <td>SID_TYPE_UNKNOWN</td>
         * <td>Unknown</td>
         * </tr>
         * </table>
         * 
         * @return type code
         */
        int getType ();
    
    
        /**
         * 
         * @param type
         * @return unwrapped instance
         */
        public <T> T unwrap ( Class<T> type );
    
    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

                return "";
            return acctName;
        }
    
        public int hashCode() {
            int hcode = identifier_authority[5];
            for (int i = 0; i < sub_authority_count; i++) {
                hcode += 65599 * sub_authority[i];
            }
            return hcode;
        }
        public boolean equals(Object obj) {
            if (obj instanceof SID) {
                SID sid = (SID)obj;
    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