- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for 100 (0.02 sec)
-
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
for (int i = 0; i < 100; i++) { sb.append("word").append(i).append(" "); } String text = sb.toString(); String field = "content"; String lang = "en"; List<AnalyzeToken> tokens = analyzer.analyze(text, field, lang); assertNotNull(tokens); assertEquals(100, tokens.size()); for (int i = 0; i < 100; i++) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
} else { this.limitPercentage = Integer.parseInt(limitPercentage); } if (this.limitPercentage > 100) { this.limitPercentage = 100; } else if (this.limitPercentage < 1) { this.limitPercentage = 1; } } /** * Sets the limit number.Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
} /** * Test concurrent name access */ public void test_concurrentNameAccess() throws Exception { final int threadCount = 100; final int operationsPerThread = 100; final CountDownLatch startLatch = new CountDownLatch(1); final CountDownLatch endLatch = new CountDownLatch(threadCount); final AtomicInteger errorCount = new AtomicInteger(0);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
// Create multiple threads adding patterns Thread thread1 = new Thread(() -> { for (int i = 0; i < 100; i++) { urlFilter.addInclude("https://site" + i + ".com/.*"); } }); Thread thread2 = new Thread(() -> { for (int i = 0; i < 100; i++) { urlFilter.addExclude(".*\\.type" + i + "$"); } });Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java
public void test_doGet_with4Exception_interval100() { final FaultTolerantClient client = new FaultTolerantClient(); client.setRetryInterval(100); final TestClient testClient = new TestClient(); testClient.exceptionCount = 4; testClient.interval = 100; final TestListener testListener = new TestListener(); client.setCrawlerClient(testClient); client.setRequestListener(testListener);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 15.1K bytes - Viewed (0) -
README.md
Crawler crawler = container.getComponent("crawler"); // Configure crawling parameters crawler.addUrl("https://example.com"); crawler.crawlerContext.setMaxAccessCount(100); crawler.crawlerContext.setNumOfThread(5); crawler.urlFilter.addInclude("https://example.com/.*"); // Execute crawling String sessionId = crawler.execute();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
if (StringUtil.isNotBlank(resourceName)) { final String name = getFileName(resourceName); final String[] strings = name.split("\\."); final StringBuilder buf = new StringBuilder(100); if (strings.length > 1) { for (int i = 0; i < strings.length - 1; i++) { if (buf.length() != 0) { buf.append('.'); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 16K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java
} /** * Test concurrent property access */ public void test_concurrentPropertyAccess() throws Exception { final int threadCount = 10; final int iterationsPerThread = 100; final CountDownLatch startLatch = new CountDownLatch(1); final CountDownLatch endLatch = new CountDownLatch(threadCount); final AtomicInteger errorCount = new AtomicInteger(0);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 21.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
} /** * Test concurrent access count operations */ public void test_accessCount_concurrent() throws Exception { final int threadCount = 100; final int operationsPerThread = 1000; final CountDownLatch startLatch = new CountDownLatch(1); final CountDownLatch endLatch = new CountDownLatch(threadCount);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
// basicAuthList.toArray(new Authentication[basicAuthList.size()])); // // List<Callable<ResponseData>> list = // new ArrayList<Callable<ResponseData>>(); // for (int i = 0; i < 100; i++) { // list.add(new Callable<ResponseData>() { // public ResponseData call() throws Exception { // String[] urls = // new String[] { // "http://.../", // "http://.../test.pdf",
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K bytes - Viewed (0)