- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for Drawing (0.05 sec)
-
README.md
// 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(); System.out.println("Crawling completed. Session ID: " + sessionId); } }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
public void setSessionIdList(final List<String> sessionIdList) { this.sessionIdList = sessionIdList; } /** * Sets the flag indicating whether crawling should be finished. * * @param finishCrawling true if crawling should be finished, false otherwise */ public void setFinishCrawling(final boolean finishCrawling) { this.finishCrawling = finishCrawling; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
ComponentUtil.register(systemHelper, "systemHelper"); ComponentUtil.setFessConfig(fessConfig); // Execute String result = purgeLogJob.execute(); // Assert crawling info and status update were called assertTrue(deleteCrawlingInfoCalled[0]); assertTrue(updateJobLogStatusCalled[0]); // Assert other services were not called
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
crawlerContext.setIntervalController(new TestIntervalController()); // Start crawling crawlerContext.setStatus(CrawlerStatus.RUNNING); crawlerContext.setActiveThreadCount(5); // Simulate crawling progress for (int i = 0; i < 100; i++) { crawlerContext.incrementAndGetAccessCount();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
cmd/metrics-v3-handler.go
// hence not included in the collector path. pathComponents = pathComponents[:bucketIdx] } innerHandler := h.handle(pathComponents, isListingRequest, buckets) // Add tracing to the prom. handler tracedHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { tc, ok := r.Context().Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt) if ok {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
public void test_init_withIngestFactory() { ComponentUtil.register(ingestFactory, "ingestFactory"); indexUpdater.init(); assertNotNull(indexUpdater); } // Test destroy when crawling is not finished public void test_destroy_notFinished() { final List<Crawler> crawlerList = new ArrayList<>(); final TestCrawler crawler = new TestCrawler(); crawlerList.add(crawler);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
docs/en/data/external_links.yml
https://hackernoon.com/explore-how-to-effectively-use-jwt-with-fastapi title: Explore How to Effectively Use JWT With FastAPI - author: Nicoló Lino author_link: https://www.nlino.com link: https://github.com/softwarebloat/python-tracing-demo title: Instrument FastAPI with OpenTelemetry tracing and visualize traces in Grafana Tempo. - author: Mikhail Rozhkov, Elena Samuylova author_link: https://www.linkedin.com/in/mnrozhkov/ link: https://www.evidentlyai.com/blog/fastapi-tutorial title: ML serving and monitoring...
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 23K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
// We just verify that the crawl completes with EXIT_OK assertTrue("Crawler should complete", result == Constants.EXIT_OK); } // Test concurrent crawling public void test_doCrawl_concurrentWebAndData() { final List<String> executionOrder = Collections.synchronizedList(new ArrayList<>()); WebFsIndexHelper mockWebHelper = new WebFsIndexHelper() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java
transformer.addTransformationRule("<[^>]+>", ""); // Remove HTML tags transformer.addTransformationRule("\\s+", " "); // Normalize whitespace // Simulate crawling response ResponseData responseData = new ResponseData(); responseData.setUrl("http://example.com/page.html"); responseData.setParentUrl("http://example.com/");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 28K bytes - Viewed (0) -
RELEASE.md
regarding when retracing needs to occur by implementing the Tracing Protocol available through `tf.types.experimental.SupportsTracingProtocol`. * `TypeSpec` classes (as associated with `ExtensionTypes`) also implement the Tracing Protocol which can be overridden if necessary. * The newly introduced `reduce_retracing` option also uses the TracingRegistered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (2)