- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for mane (0.78 sec)
-
fess-crawler/src/test/resources/extractor/csv/test.csv
Name,Email,Age,Department John Doe,******@****.***,30,Engineering Jane Smith,jane@example.com,28,Marketing Bob Johnson,******@****.***,35,Sales
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 193 bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
// Add many parameters for (int i = 0; i < 100; i++) { request.param("param" + i, "value" + i); } assertNotNull(request); } @Test public void testManyHeaders() { CurlRequest request = new CurlRequest(Method.GET, "https://example.com"); // Add many headers for (int i = 0; i < 50; i++) {Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 20.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
* It uses a Guava Cache to store the last access time for each host. * The delayBeforeProcessing method is overridden to introduce a delay before processing a URL, * ensuring that requests to the same host are not made too frequently. * The delay is calculated based on the configured delayMillisBeforeProcessing parameter. * If the time since the last request to the host is less than the configured delay,
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java
data.putValue(ExtractData.URL, "https://example.com/docs/document.pdf"); data.putValue("title", "Important Document"); data.putValue("author", "Jane Smith"); data.putValue("date", "2025-01-15"); // Add multiple values String[] keywords = { "business", "report", "analysis", "2025" }; data.putValues("keywords", keywords);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 9.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
*/ public void setTimeout(final long timeout) { this.timeout = timeout; } /** * Sets whether the extraction thread should be a daemon thread. * @param isDaemonThread true to make it a daemon thread, false otherwise. */ public void setDaemonThread(final boolean isDaemonThread) { this.isDaemonThread = isDaemonThread; }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 12.8K bytes - Viewed (0) -
CLAUDE.md
// When // Then } } ``` **Coverage Goal**: >80% line coverage ### Contributing 1. Fork repo 2. Create feature branch (`feature/amazing-feature`) 3. Make focused commits 4. Add tests 5. Format code (`mvn formatter:format && mvn license:format`) 6. Run tests (`mvn test`) 7. Open Pull Request --- ## Common Development TasksRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
outputFile = createTempFile("cmdextout_" + filePrefix + "_", "." + outExt, tempDir); // store to a file CopyUtil.copy(in, inputFile); LocalConverter.make(officeManager).convert(inputFile).to(outputFile).execute(); final ExtractData extractData = new ExtractData(getOutputContent(outputFile, outExt)); if (StringUtil.isNotBlank(resourceName)) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java
import org.opensearch.action.admin.indices.alias.get.GetAliasesResponse; import org.opensearch.action.admin.indices.create.CreateIndexResponse; import org.opensearch.transport.client.Client; /** * Test class for refactoring changes made to Suggester class. * * Tests cover: * - Index alias helper method (getIndicesForAlias) * - Edge cases for switchIndex with EXPECTED_INDEX_COUNT * - Index lifecycle with refactored methods */
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 13.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
*/ public boolean isDaemon() { return daemon; } /** * Sets whether the crawler threads should be daemon threads. * @param daemon true to make threads daemon, false otherwise. */ public void setDaemon(final boolean daemon) { this.daemon = daemon; } /** * Runs the crawling process in a separate thread.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
Constructor<SuggestUtil> constructor = SuggestUtil.class.getDeclaredConstructor(); assertTrue(Modifier.isPrivate(constructor.getModifiers())); // Make it accessible to test it throws no exception constructor.setAccessible(true); constructor.newInstance(); } @Test public void testCreateSuggestTextId() { // Test normal text
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0)