- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for Calico (0.04 sec)
-
src/main/java/jcifs/internal/dtyp/ACE.java
* the then same process is repeated for inherited ACEs. * <p> * For example, if user <code>WNET\alice</code> tries to open a file * with desired access bits <code>0x00000003</code> (<code>FILE_READ_DATA | * FILE_WRITE_DATA</code>) and the target file has the following security * descriptor ACEs: * * <pre> * Allow WNET\alice 0x001200A9 Direct * Allow Administrators 0x001F01FF Inherited
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
void clone_copiesFields() { Subject subj = new Subject(); Kerb5Authenticator auth = new Kerb5Authenticator(subj, "DOM", "user", "pass"); auth.setUser("alice"); auth.setRealm("EXAMPLE.COM"); auth.setService("cifs"); auth.setUserLifeTime(123); auth.setLifeTime(456); auth.setForceFallback(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
// User in regular domain SID user = new SID(buildSidT((byte) 1, ident, 10, 20, 99), jcifs.SID.SID_TYPE_USER, "MYDOM", "alice", false); assertEquals("MYDOM", user.getDomainName()); assertEquals("alice", user.getAccountName()); assertEquals("MYDOM\\alice", user.toDisplayString()); } @Test @DisplayName("toDisplayString for BUILTIN and well-known group cases")
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/ACE.java
* the then same process is repeated for inherited ACEs. * <p> * For example, if user <code>WNET\alice</code> tries to open a file * with desired access bits <code>0x00000003</code> (<code>FILE_READ_DATA | * FILE_WRITE_DATA</code>) and the target file has the following security * descriptor ACEs: * * <pre> * Allow WNET\alice 0x001200A9 Direct * Allow Administrators 0x001F01FF Inherited
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
* the then same process is repeated for inherited ACEs. * <p> * For example, if user <code>WNET\alice</code> tries to open a file * with desired access bits <code>0x00000003</code> (<code>FILE_READ_DATA | * FILE_WRITE_DATA</code>) and the target file has the following security * descriptor ACEs: * <pre> * Allow WNET\alice 0x001200A9 Direct * Allow Administrators 0x001F01FF Inherited * Allow SYSTEM 0x001F01FF Inherited
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
* <code>S-1-5-21-1496946806-2192648263-3843101252-1029</code> but they may * also be resolved to yield the name of the associated Windows account * such as <code>Administrators</code> or <code>MYDOM\alice</code>. * <p> * Consider the following output of <code>examples/SidLookup.java</code>: * * <pre> * toString: S-1-5-21-4133388617-793952518-2001621813-512 * toDisplayString: WNET\Domain Admins
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/jcifs/smb/MIENameTest.java
class EqualityContract { @Test void equalsIgnoresCaseForName() { ASN1ObjectIdentifier oid = testOid(); MIEName a = new MIEName(oid, "Alice"); MIEName b = new MIEName(oid, "alice"); assertEquals(a, b); assertEquals(a.hashCode(), b.hashCode()); } @Test void equalsHandlesNullNames() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
Map<String, Object> paramMap = new HashMap<>(); paramMap.put("greeting", "Hello"); paramMap.put("name", "Alice"); paramMap.put("age", 25); Object result = scriptEngine.evaluate(template, paramMap); assertEquals("Hello Alice, you are 25 years old", result); } // Test evaluate method with missing parameter public void test_evaluate_withMissingParameter() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
// First is a user names.names[0] = new lsarpc.LsarTranslatedName(); names.names[0].sid_type = (short) jcifs.SID.SID_TYPE_USER; names.names[0].name = new UnicodeString("alice", false); names.names[0].sid_index = 0; // Second is a domain group names.names[1] = new lsarpc.LsarTranslatedName(); names.names[1].sid_type = (short) jcifs.SID.SID_TYPE_DOM_GRP;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
// Example from ACE interface documentation: user WNET\\alice with 0x00000003 (FILE_READ_DATA | FILE_WRITE_DATA) int aliceDesiredAccess = ACE.FILE_READ_DATA | ACE.FILE_WRITE_DATA; assertEquals(0x00000003, aliceDesiredAccess, "Alice's desired access should be 0x00000003"); // Direct ACE: Allow WNET\\alice 0x001200A9 int aliceDirectACE = 0x001200A9;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0)