- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for Wright (0.04 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/builder/RequestDataBuilderTest.java
RequestData data1 = RequestDataBuilder.newRequestData().url("https://example.com").weight(1.5f).get().build(); RequestData data2 = RequestDataBuilder.newRequestData().get().url("https://example.com").weight(1.5f).build(); RequestData data3 = RequestDataBuilder.newRequestData().weight(1.5f).get().url("https://example.com").build(); assertEquals(data1.getMethod(), data2.getMethod());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
final int width = reader.getWidth(0); final int height = reader.getHeight(0); if (width <= 0 || height <= 0) { return Result.NO_IMAGE; } if (!fessConfig.validateThumbnailSize(width, height)) { return Result.INVALID_SIZE; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/UrlQueueImplTest.java
queue.setCreateTime(null); assertNull(queue.getCreateTime()); } public void test_weightGetterSetter() { // Test weight getter/setter UrlQueueImpl<Long> queue = new UrlQueueImpl<>(); // Default weight should be 1.0 assertEquals(1.0f, queue.getWeight(), 0.001f); queue.setWeight(0.5f); assertEquals(0.5f, queue.getWeight(), 0.001f);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 9.1K bytes - Viewed (0) -
CLAUDE.md
**Extractor**: Weight-based selection (tries in descending weight order) ### Key Extractors `TikaExtractor` (1000+ formats), `PdfExtractor`, `MsWordExtractor`, `MsExcelExtractor`, `MsPowerPointExtractor`, `ZipExtractor`, `HtmlExtractor`, etc. **Registration**: ```java extractorFactory.addExtractor("text/html", htmlExtractor, 2); // Weight 2
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* @param parentUrl the parent URL that referenced this child URL * @param weight the weight/priority of the child URL * @param depth the crawling depth of the child URL */ @Override protected void storeChildUrl(final String childUrl, final String parentUrl, final float weight, final int depth) { if (StringUtil.isNotBlank(childUrl)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 19.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RequestDataTest.java
data.setUrl(null); assertNull(data.getUrl()); } public void test_weightGetterSetter() { // Test weight getter/setter RequestData data = new RequestData(); // Default weight should be 1.0 assertEquals(1.0f, data.getWeight(), 0.001f); data.setWeight(0.5f); assertEquals(0.5f, data.getWeight(), 0.001f);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 8.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
* It also includes a builder for creating extractors. * * <p> * The factory maintains a map of keys to an array of {@link Extractor} objects. * When multiple extractors are associated with a single key, they are sorted by weight * in descending order. The {@link #getExtractor(String)} method returns a composite * extractor that iterates through the available extractors until one successfully * extracts the data. * </p> * * <p>Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 7.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
urlQueue.setWeight(i); // Higher number = higher weight urlQueueList.add(urlQueue); } urlQueueService.offerAll(sessionId, urlQueueList); // Poll - items should be ordered by weight (descending) final OpenSearchUrlQueue first = urlQueueService.poll(sessionId); assertNotNull(first); // Weight should be highest assertTrue(first.getWeight() >= 1);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 14.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
} final InputStream in = new ByteArrayInputStream(baos.toByteArray()); final ExtractData result = zipExtractor.getText(in, null); assertNotNull(result); // Content might be empty or contain minimal text depending on processing assertNotNull(result.getContent()); } /** * Test that TarExtractor returns empty content for archive with no extractable files. */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/main/java/org/codelibs/core/lang/StringUtil.java
} /** * Removes whitespace from the right side of the string. * * @param text * The text to trim * @return The resulting string */ public static final String rtrim(final String text) { return rtrim(text, null); } /** * Removes the specified characters from the right side of the string. * * @param textRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0)