- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for Users (0.16 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
/** * Notification message displayed on the login page. * This message is shown to users on the authentication page. */ @Size(max = 3000) public String notificationLogin; /** * Notification message displayed on the search top page. * This message is shown to users on the main search page. */ @Size(max = 3000) public String notificationSearchTop;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/builder/RequestDataBuilderTest.java
// Test complex scenario with GET method RequestData data = RequestDataBuilder.newRequestData().get().url("https://api.example.com/users/123").weight(0.8f).build(); assertEquals(Method.GET, data.getMethod()); assertEquals("https://api.example.com/users/123", data.getUrl()); assertEquals(0.8f, data.getWeight(), 0.001f); } public void test_complexScenarioWithPost() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterServiceTest.java
assertEquals(1, patterns.size()); assertTrue(patterns.get(0).matcher("http://example.com/admin/users").matches()); assertFalse(patterns.get(0).matcher("http://example.com/public/users").matches()); urlFilterService.delete(sessionId); } public void test_addIncludeUrlFilter_multiTx() { final String sessionId = "session3";
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
super.setUp(); Path tempDir = Files.createTempDirectory("smb1data"); Path publicDir = tempDir.resolve("public"); Files.createDirectory(publicDir); Path usersDir = tempDir.resolve("users"); Files.createDirectory(usersDir); Path testuser1Dir = tempDir.resolve("testuser1"); Files.createDirectory(testuser1Dir); Path testuser2Dir = tempDir.resolve("testuser2");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 30K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
assertFalse(robotsTxt.allows("/admin/users.php", "WildcardBot")); assertTrue(robotsTxt.allows("/admin/", "WildcardBot")); // no .php extension assertTrue(robotsTxt.allows("/admin/login.html", "WildcardBot")); // not .php // Disallow: /*/private/ - should block private directories under any parent assertFalse(robotsTxt.allows("/users/private/", "WildcardBot"));
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
// BUILTIN with other type also returns acctName SID aliasBuiltin = new SID(buildSidT((byte) 1, ident, 545), jcifs.SID.SID_TYPE_ALIAS, "BUILTIN", "Users", false); assertEquals("Users", aliasBuiltin.toDisplayString()); } @Test @DisplayName("toString uses hex authority when high bytes are non-zero") void testToStringHexAuthority() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
*/ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { return asListHtml(); } /** * Displays a paginated list of users. * * @param pageNumber the page number to display (optional) * @param form the search form containing filter criteria * @return HTML response with the user list */ @ExecuteRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* users. This method should return the same text that the ACL * editor in Windows would display. * <p> * Specifically, if the SID has * been resolved and it is not a domain SID or builtin account, * the full DOMAIN\name form of the account will be * returned (e.g. MYDOM\alice or MYDOM\Domain Users). * If the SID has been resolved but it is is a domain SID,Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
names.names[1] = new lsarpc.LsarTranslatedName(); names.names[1].sid_type = (short) jcifs.SID.SID_TYPE_DOM_GRP; names.names[1].name = new UnicodeString("Domain Users", false); names.names[1].sid_index = 0; rpc.names = names; return null; }).when(handle).sendrecv(any()); cache.resolveSids(handle, policy, in);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
* on an SMB network like one might with Network Neighborhood or Windows * Explorer. The users credentials with be negotiated using NTLM SSP if * the client is Microsoft Internet Explorer. * * @deprecated Unsupported */ @Deprecated /** * A servlet that provides network browsing capabilities for SMB shares. * This servlet allows users to browse SMB network resources through a web interface. */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0)