- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 363 for domein (0.1 sec)
-
src/test/java/jcifs/DfsReferralDataTest.java
} @Test @DisplayName("Should get domain") void testGetDomain() { // Given String domain = "TESTDOMAIN"; when(mockReferralData.getDomain()).thenReturn(domain); // When String result = mockReferralData.getDomain(); // Then assertEquals(domain, result); verify(mockReferralData).getDomain(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrOpenDomain.java
import jcifs.smb1.dcerpc.rpc; /** * MS-RPC SAMR open domain operation. * * This class implements the SAMR OpenDomain operation for obtaining * a handle to a specific domain in the Security Account Manager. */ public class MsrpcSamrOpenDomain extends samr.SamrOpenDomain { /** * Creates a new request to open a domain handle. * * @param handle the SAM policy handle
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
okhttp/src/commonTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt
// checkPublicSuffix("a.b.example.local", null); // TLD with only 1 rule. checkPublicSuffix("biz", null) checkPublicSuffix("domain.biz", "domain.biz") checkPublicSuffix("b.domain.biz", "domain.biz") checkPublicSuffix("a.b.domain.biz", "domain.biz") // TLD with some 2-level rules. checkPublicSuffix("com", null) checkPublicSuffix("example.com", "example.com")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 22:00:49 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java
dfsEnumArray.count = 2; dfsEnumArray.s = new DfsInfo200[2]; dfsEnumArray.s[0] = new DfsInfo200(); dfsEnumArray.s[0].dfs_name = "\\domain\share1"; dfsEnumArray.s[1] = new DfsInfo200(); dfsEnumArray.s[1].dfs_name = "\\domain\share2"; // Manually set the DfsEnumArray200 to the info struct dfsRootEnum.info.e = dfsEnumArray; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java
/** * Create username/password credentials with specified domain * * @param domain the authentication domain * @param username the username * @param passwordHash * NT password hash */ public NtlmNtHashAuthenticator(final String domain, final String username, final byte[] passwordHash) { super(domain, username, (String) null, AuthenticationType.USER);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransportPool.java
* */ boolean close() throws CIFSException; /** * Authenticate arbitrary credentials represented by the * <code>NtlmPasswordAuthentication</code> object against the domain controller * specified by the <code>UniAddress</code> parameter. If the credentials are * not accepted, an <code>SmbAuthException</code> will be thrown. If an error
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
* * @param fqdn the fully qualified domain name to use */ void fixupHost(String fqdn); /** * Possibly appends the given domain name to the host name if it is currently unqualified * * @param domain the domain name to append */ void fixupDomain(String domain); /** * Reduces path consumed by the given value *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
} @Test @DisplayName("Test statistics accumulation") void testStatisticsAccumulation() { logger.logAuthentication(true, "user1", "DOMAIN", "192.168.1.1"); logger.logAuthentication(false, "user2", "DOMAIN", "192.168.1.2"); logger.logFileAccess("WRITE", "/file.txt", true, "user1"); Map<EventType, Long> stats = logger.getStatistics();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
private String authMethod; private boolean handshakeComplete; static { String domain = System.getProperty("http.auth.ntlm.domain"); if (domain == null) { domain = Type3Message.getDefaultDomain(); } DEFAULT_DOMAIN = domain; } /** * Creates a new NTLM HTTP URL connection that wraps an existing HTTP connection. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/jcifs/CredentialsTest.java
} @Test @DisplayName("Should get user domain") void testGetUserDomain() { // Given String domain = "TESTDOMAIN"; when(mockCredentials.getUserDomain()).thenReturn(domain); // When String result = mockCredentials.getUserDomain(); // Then assertEquals(domain, result); verify(mockCredentials).getUserDomain(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.5K bytes - Viewed (0)