- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 80 for testdomain (0.05 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
assertNull(request.getFullUNCPath()); assertNull(request.getServer()); assertNull(request.getDomain()); request.setFullUNCPath("DOMAIN", "SERVER", "\\\\SERVER\\share\\file.txt"); assertEquals("DOMAIN", request.getDomain()); assertEquals("SERVER", request.getServer()); assertEquals("\\\\SERVER\\share\\file.txt", request.getFullUNCPath()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmSsp.java
byte[] ntResponse = type3.getNTResponse(); if (ntResponse == null) { ntResponse = new byte[0]; } return new NtlmPasswordAuthentication(type3.getDomain(), type3.getUser(), challenge, lmResponse, ntResponse); } } else { resp.setHeader("WWW-Authenticate", "NTLM"); } resp.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
// restores almost everything that was modified, except the path. rpath.setPath(savedPath); rpath.setFullUNCPath(rpath.getDomain(), rpath.getServer(), savedFullPath); } if (response != null) { response.reset(); } try (SmbTreeHandle th = connectWrapException(loc)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
return; } final HttpSession ssn = request.getSession(); ssn.setAttribute("NtlmHttpAuth", ntlm); ssn.setAttribute("ntlmdomain", ntlm.getDomain()); ssn.setAttribute("ntlmuser", ntlm.getUsername()); } else { final HttpSession ssn = request.getSession(false); if (ssn == null || ssn.getAttribute("NtlmHttpAuth") == null) {
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/internal/smb2/create/Smb2CreateRequest.java
@Override public String getServer() { return this.server; } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getDomain() */ @Override public String getDomain() { return this.domain; } /** * @param fullName * the fullName to set */ @Override
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/cmd/api/api_test.go
import ( "flag" "fmt" "go/build" "internal/testenv" "os" "path/filepath" "slices" "strings" "sync" "testing" ) var flagCheck = flag.Bool("check", false, "run API checks") func TestMain(m *testing.M) { flag.Parse() for _, c := range contexts { c.Compiler = build.Default.Compiler } build.Default.GOROOT = testenv.GOROOT(nil) os.Exit(m.Run()) } var (
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri May 02 17:06:27 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DfsTest.java
Dfs.CacheEntry expiredEntry = new Dfs.CacheEntry(-1); // Expired testDfs._domains = expiredEntry; testDfs.setDisabled(true); // Set disabled to avoid NullPointerException when(auth.getDomain()).thenReturn("domain.com"); assertNull(testDfs.getTrustedDomains(auth)); } @Test void testGetTrustedDomains_Success() throws IOException, SmbAuthException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
final Cookie cookie = new Cookie(cookieName, userCode); cookie.setMaxAge(age); cookie.setHttpOnly(httpOnly); if (StringUtil.isNotBlank(cookieDomain)) { cookie.setDomain(cookieDomain); } if (StringUtil.isNotBlank(cookiePath)) { cookie.setPath(cookiePath); } cookie.setSecure(isSecureCookie());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
docs/de/docs/advanced/settings.md
### Einstellungen und Tests Dann wäre es sehr einfach, beim Testen ein anderes Einstellungsobjekt bereitzustellen, indem man eine Abhängigkeitsüberschreibung für `get_settings` erstellt: {* ../../docs_src/settings/app02/test_main.py hl[9:10,13,21] *} Bei der Abhängigkeitsüberschreibung legen wir einen neuen Wert für `admin_email` fest, wenn wir das neue `Settings`-Objekt erstellen, und geben dann dieses neue Objekt zurück.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 16.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
@Override public String getFullUNCPath() { return this.fullPath; } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getDomain() */ @Override public String getDomain() { return this.domain; } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getServer() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0)