- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for SID_TYPE_USE_NONE (0.32 sec)
-
src/main/java/jcifs/SID.java
* getDomainName: WNET * getAccountName: Domain Admins * </pre> */ public interface SID { /** * SID type indicating no type information. */ int SID_TYPE_USE_NONE = 0; /** * SID type indicating a user account. */ int SID_TYPE_USER = 1; /** * SID type indicating a domain group. */ int SID_TYPE_DOM_GRP = 2; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
assertEquals(3, SambaHelper.SID_TYPE_DOMAIN); assertEquals(7, SambaHelper.SID_TYPE_INVALID); assertEquals(8, SambaHelper.SID_TYPE_UNKNOWN); assertEquals(0, SambaHelper.SID_TYPE_USE_NONE); assertEquals(1, SambaHelper.SID_TYPE_USER); assertEquals(5, SambaHelper.SID_TYPE_WKN_GRP); } public void test_init() { ComponentUtil.setFessConfig(new MockFessConfig());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
/** * SID type for an unknown SID. */ public static final int SID_TYPE_UNKNOWN = 8; /** * SID type for a non-use SID. */ public static final int SID_TYPE_USE_NONE = 0; /** * SID type for a user. */ public static final int SID_TYPE_USER = 1; /** * SID type for a well-known group. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
// All-zero subauthorities byte[] ident = new byte[] { 0, 0, 0, 0, 0, 0 }; rpc.sid_t st = buildSidT((byte) 1, ident, 0, 0); SID s2 = new SID(st, jcifs.SID.SID_TYPE_USE_NONE, null, null, false); assertFalse(s2.isEmpty()); assertTrue(s2.isBlank()); } @ParameterizedTest(name = "type {0} -> {1}")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* getAccountName: Domain Admins * </pre> */ public class SID extends rpc.sid_t { /** * SID type indicating no type information. */ public static final int SID_TYPE_USE_NONE = lsarpc.SID_NAME_USE_NONE; /** * SID type indicating a user account. */ public static final int SID_TYPE_USER = lsarpc.SID_NAME_USER; /** * SID type indicating a domain group. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0)