- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 363 for domein (0.05 sec)
-
okhttp/src/jvmTest/resources/web-platform-test-toascii.json
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/SmbTreeHandleTest.java
* Verifies that the method returns the correct OEM domain name. * @throws CIFSException */ @Test void testGetOEMDomainName() throws CIFSException { when(smbTreeHandle.getOEMDomainName()).thenReturn("TEST_DOMAIN"); assertEquals("TEST_DOMAIN", smbTreeHandle.getOEMDomainName(), "OEM domain name should be TEST_DOMAIN"); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
// Set server timezone (in minutes) and domain nego.getServerData().serverTimeZone = 60; // 60 minutes nego.getServerData().oemDomainName = "DOMAIN"; when(transport.getNegotiateResponse()).thenReturn(nego); assertEquals(60L * 1000L * 60L, handle.getServerTimeZoneOffset()); assertEquals("DOMAIN", handle.getOEMDomainName()); verify(session, times(2)).close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
docs/en/docs/tutorial/security/first-steps.md
# Security - First Steps { #security-first-steps } Let's imagine that you have your **backend** API in some domain. And you have a **frontend** in another domain or in a different path of the same domain (or in a mobile application). And you want to have a way for the frontend to authenticate with the backend, using a **username** and **password**. We can use **OAuth2** to build that with **FastAPI**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
mockName = new Name(mockConfig, "DOMAIN", 0x1B, null); // Domain Master Browser NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE); assertEquals(NbtAddress.SMBSERVER_NAME, nbtAddress.firstCalledName()); mockName = new Name(mockConfig, "DOMAIN", 0x1C, null); // Domain Controller
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
/** * SID type for a deleted account. */ public static final int SID_TYPE_DELETED = 6; /** * SID type for a domain group. */ public static final int SID_TYPE_DOM_GRP = 2; /** * SID type for a domain. */ public static final int SID_TYPE_DOMAIN = 3; /** * SID type for an invalid SID. */
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/main/java/org/codelibs/fess/helper/UserInfoHelper.java
*/ public void setCookieName(final String cookieName) { this.cookieName = cookieName; } /** * Sets the domain for the user identification cookie. * * @param cookieDomain the domain to use for the user identification cookie */ public void setCookieDomain(final String cookieDomain) { this.cookieDomain = cookieDomain; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
*/ @Override public String getDomain() { return this.domain; } /** * @param fullName * the fullName to set */ @Override public void setFullUNCPath(final String domain, final String server, final String fullName) { this.domain = domain; this.server = server; this.fullName = fullName; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmServletTest.java
// Mock ServletConfig to provide initialization parameters Map<String, String> initParams = new HashMap<>(); initParams.put("jcifs.smb.client.domain", "TEST_DOMAIN"); initParams.put("jcifs.http.domainController", "dc.test.domain"); initParams.put("jcifs.http.enableBasic", "true"); initParams.put("jcifs.http.insecureBasic", "true"); initParams.put("jcifs.http.basicRealm", "TestRealm");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
if (index == -1) { index = user.indexOf('/'); } final String domain = index != -1 ? user.substring(0, index) : defaultDomain; user = index != -1 ? user.substring(index + 1) : user; ntlm = new NtlmPasswordAuthentication(domain, user, password); dc = UniAddress.getByName(domainController, true); } try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0)