- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for TestUser (0.06 sec)
-
src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java
return OptionalThing.of(new FessUserBean(new TestUser(name, permissions))); } static class TestUser implements FessUser { private static final long serialVersionUID = 1L; private String name; private String[] permissions; TestUser(String name, String[] permissions) { this.name = name;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
server.start(); return server; } public void test_doGet_root_dir() throws FtpException { FtpServer server = null; try { String username = "testuser"; String password = "testpass"; server = startFtpServer(FTP_PORT, username, password); Map<String, Object> params = new HashMap<String, Object>();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 16.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/BaseCIFSTest.java
Assume.assumeNotNull(testPassword); return testPassword; } protected String getTestUser () { String testUser = getProperties().get(TestProperties.TEST_USER_NAME); Assume.assumeNotNull(testUser); return testUser; } protected String getTestShareGuestURL () { String testGuestShare = getProperties().get(TestProperties.TEST_SHARE_GUEST);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationTest.java
public void test_matches() throws Exception { FtpAuthentication auth = new FtpAuthentication(); auth.setServer("hostname"); auth.setPort(21); auth.setUsername("testuser"); auth.setPassword("testpass"); assertTrue(auth.matches("ftp://hostname:21/test/aaa.html")); assertTrue(auth.matches("ftp://hostname/test/aaa.html"));
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/NtlmTest.java
}; byte[] ntResponse = new byte[] { 0xF, 0xE, 0xD, 0xC, 0xB, 0xA, 0x9, 0x8, 0x7, 0x6, 0x5, 0x4, 0x3, 0x2, 0x1, 0x0 }; String domain = "TESTDOM"; String user = "TESTUSER"; String workstation = "TESTWS"; Type3Message t3 = new Type3Message(flags, lmResponse, ntResponse, domain, user, workstation); Type3Message parsed = new Type3Message(t3.toByteArray());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 16 10:38:43 UTC 2018 - 4.8K bytes - Viewed (0)