- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 207 for jail (0.01 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 21.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java
try { CrawlerStatus.valueOf("INVALID"); fail("Should throw IllegalArgumentException for invalid value"); } catch (IllegalArgumentException e) { // Expected assertTrue(e.getMessage().contains("INVALID")); } try { CrawlerStatus.valueOf("initializing"); // lowercase fail("Should throw IllegalArgumentException for lowercase value");Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 15.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
// First call should fail (no endpoint set) try { conn.connect(); fail("Should throw IOException"); } catch (IOException e) { assertTrue(e.getMessage().contains("endpoint is blank")); } // Second call should also fail with the same error try { conn.connect(); fail("Should throw IOException");Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.mylasta.mail; import org.lastaflute.core.mail.LaTypicalPostcard; import org.lastaflute.core.mail.MPCall; import org.lastaflute.core.mail.Postbox; /** * The postcard for MailFlute on LastaFlute. * @author FreeGen */ public class CrawlerPostcard extends LaTypicalPostcard {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
assertEquals(5, responseData.getContentLength()); } try { smbClient.doGet(baseUrl); fail(); } catch (final ChildUrlsException e) { String[] urls = e.getChildUrlList().stream().map(r -> r.getUrl()).sorted().toArray(String[]::new); assertEquals(3, urls.length);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
/* Creates a new file or supersedes the existing one */ static final int FILE_SUPERSEDE = 0x0; /* Open the file or fail if it does not exist * aka OPEN_EXISTING */ static final int FILE_OPEN = 0x1; /* Create the file or fail if it does not exist * aka CREATE_NEW */ static final int FILE_CREATE = 0x2; /* Open the file or create it if it does not existRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/ICUNormalizerTest.java
new ICUNormalizer(null); fail("Expected IllegalArgumentException"); } catch (IllegalArgumentException e) { assertEquals("transliteratorId must not be null", e.getMessage()); } } public void test_invalidTransliteratorId() { try { new ICUNormalizer("Invalid-Transliterator-ID-12345"); fail("Expected IllegalArgumentException");
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/cq/bs/BsUserCQ.java
} public void setMail_Equal(String mail) { setMail_Term(mail, null); } public void setMail_Equal(String mail, ConditionOptionCall<TermQueryBuilder> opLambda) { setMail_Term(mail, opLambda); } public void setMail_Term(String mail) { setMail_Term(mail, null); } public void setMail_Term(String mail, ConditionOptionCall<TermQueryBuilder> opLambda) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 326.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
*/ public void test_ZipExtractor_nullInputStream_throwsWithMessage() { try { zipExtractor.getText(null, null); fail("Expected CrawlerSystemException"); } catch (final CrawlerSystemException e) { assertEquals("The inputstream is null.", e.getMessage()); } } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/FileUtilTest.java
import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.net.URL; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths;
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 10.3K bytes - Viewed (0)