- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 288 for Romadin (0.08 sec)
-
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) -
guava/src/com/google/common/net/package-info.java
* or implied. See the License for the specific language governing permissions and limitations under * the License. */ /** * Utility methods and classes for networking (such as IP addresses and domain names). * * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a> * library. * * @author Craig Berry */ @CheckReturnValue @NullMarked
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 997 bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/Punycode.kt
*/ package okhttp3.internal.idn import okio.Buffer import okio.ByteString.Companion.encodeUtf8 /** * An [RFC 3492] punycode decoder for converting ASCII to Unicode domain name labels. This is * intended for use in Internationalized Domain Names (IDNs). * * This class contains a Kotlin implementation of the pseudocode specified by RFC 3492. It includes * direct translation of the pseudocode presented there. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 8.5K 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) -
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/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/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/main/java/jcifs/ntlmssp/NtlmFlags.java
/** * Indicates that this is an anonymous connection */ int NTLMSSP_NEGOTIATE_ANONYMOUS = 0x00000800; /** * Indicates whether the OEM-formatted domain name in which the * client workstation has membership is supplied in the Type-1 message. * This is used in the negotation of local authentication. */ int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 0x00001000;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
docs/de/docs/tutorial/security/first-steps.md
# Sicherheit – Erste Schritte Stellen wir uns vor, dass Sie Ihre **Backend**-API auf einer Domain haben. Und Sie haben ein **Frontend** auf einer anderen Domain oder in einem anderen Pfad derselben Domain (oder in einer mobilen Anwendung). Und Sie möchten eine Möglichkeit haben, dass sich das Frontend mithilfe eines **Benutzernamens** und eines **Passworts** beim Backend authentisieren kann. Wir können **OAuth2** verwenden, um das mit **FastAPI** zu erstellen.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.2K bytes - Viewed (0)