Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for ssid (0.21 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val spock = "org.spockframework:spock-core"
        val spockJUnit4 = "org.spockframework:spock-junit4"
        val sshdCore = "org.apache.sshd:sshd-core"
        val sshdOsgi = "org.apache.sshd:sshd-osgi"
        val sshdScp = "org.apache.sshd:sshd-scp"
        val sshdSftp = "org.apache.sshd:sshd-sftp"
        val testcontainersSpock = "org.testcontainers:spock"
        val typesafeConfig = "com.typesafe:config"
        val xerces = "xerces:xercesImpl"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java

    import jcifs.smb1.Config;
    import jcifs.smb1.util.Hexdump;
    
    class Trans2FindNext2 extends SmbComTransaction {
    
        private int sid, informationLevel, resumeKey, flags;
        private String filename;
    
        Trans2FindNext2( int sid, int resumeKey, String filename ) {
            this.sid = sid;
            this.resumeKey = resumeKey;
            this.filename = filename;
            command = SMB_COM_TRANSACTION2;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	} LsarPolicyInfo;
    
    	typedef struct {
    		sid_t *sid;
    	} LsarSidPtr;
    
    	typedef struct {
    		[range(0,1000)] uint32_t num_sids;
    		[size_is(num_sids)] LsarSidPtr *sids;
    	} LsarSidArray;
    
    	typedef enum {
    		SID_NAME_USE_NONE = 0, /* NOTUSED */
    		SID_NAME_USER     = 1, /* user */
    		SID_NAME_DOM_GRP  = 2, /* domain group */
    		SID_NAME_DOMAIN   = 3, /* domain: don't know what this is */
    		SID_NAME_ALIAS    = 4, /* local group */
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (1)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    	} LsarPolicyInfo;
    
    	typedef struct {
    		sid_t *sid;
    	} LsarSidPtr;
    
    	typedef struct {
    		[range(0,1000)] uint32_t num_sids;
    		[size_is(num_sids)] LsarSidPtr *sids;
    	} LsarSidArray;
    
    	typedef enum {
    		SID_NAME_USE_NONE = 0, /* NOTUSED */
    		SID_NAME_USER     = 1, /* user */
    		SID_NAME_DOM_GRP  = 2, /* domain group */
    		SID_NAME_DOMAIN   = 3, /* domain: don't know what this is */
    		SID_NAME_ALIAS    = 4, /* local group */
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/PacLogonInfo.java

        private String homeDirectory;
        private String homeDrive;
        private String serverName;
        private String domainName;
        private SID userSid;
        private SID groupSid;
        private SID[] groupSids;
        private SID[] resourceGroupSids;
        private SID[] extraSids;
        private int userAccountControl;
        private int userFlags;
    
    
        public PacLogonInfo ( byte[] data ) throws PACDecodingException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.smb.SID;
    
    
    /**
     * Internal use only
     * 
     * @internal
     */
    public class SecurityDescriptor implements SecurityInfo {
    
        /**
         * Descriptor type
         */
        private int type;
    
        /**
         * ACEs
         */
        private ACE[] aces;
        private SID ownerUserSid, ownerGroupSid;
    
    
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SidResolver.java

         *            name associated with SIDs will be required, the SID_FLAG_RESOLVE_SIDS
         *            flag should be used which causes all group member SIDs to be resolved
         *            together in a single more efficient operation.
         * @return a map of group SID to member SIDs
         * @throws CIFSException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

            }
        }
        public static final int SID_NAME_USE_NONE = 0;
        public static final int SID_NAME_USER = 1;
        public static final int SID_NAME_DOM_GRP = 2;
        public static final int SID_NAME_DOMAIN = 3;
        public static final int SID_NAME_ALIAS = 4;
        public static final int SID_NAME_WKN_GRP = 5;
        public static final int SID_NAME_DELETED = 6;
        public static final int SID_NAME_INVALID = 7;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 33K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

        }
    
        public static final int SID_NAME_USE_NONE = 0;
        public static final int SID_NAME_USER = 1;
        public static final int SID_NAME_DOM_GRP = 2;
        public static final int SID_NAME_DOMAIN = 3;
        public static final int SID_NAME_ALIAS = 4;
        public static final int SID_NAME_WKN_GRP = 5;
        public static final int SID_NAME_DELETED = 6;
        public static final int SID_NAME_INVALID = 7;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 35.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComFindClose2.java

    
    /**
     * 
     */
    public class SmbComFindClose2 extends ServerMessageBlock {
    
        private int sid;
    
    
        /**
         * 
         * @param config
         * @param sid
         */
        public SmbComFindClose2 ( Configuration config, int sid ) {
            super(config, SMB_COM_FIND_CLOSE2);
            this.sid = sid;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
Back to top