Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for mane (0.25 sec)

  1. 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)
  2. .github/workflows/codeql-analysis.yml

        #    and modify them (or add more) to build your code if your project
        #    uses a compiled language
    
        #- run: |
        #   make bootstrap
        #   make release
    
        - name: Perform CodeQL Analysis
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp

                                    /></a></li>
                                </ul>
                                <div class="tab-content">
                                    <div role="tabpanel" class="tab-pane active" id="remote">
                                        <div class="card-body">
                                            <div class="form-group row">
                                                <la:errors property="selectedArtifact"/>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    # Extractor Implementation Tests
    
    This directory contains comprehensive tests for the Extractor implementations, focusing on the improvements made to resource management, error handling, and input validation.
    
    ## Test Files Overview
    
    ### 1. ExtractorResourceManagementTest.java
    **Purpose**: Verify proper resource management in Extractor implementations.
    
    **Key Test Areas**:
    - Resource closure on successful extraction (MS Office extractors)
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/curl/Curl.java

            return new CurlRequest(Method.DELETE, url);
        }
    
        /**
         * Creates a new CurlRequest with the HTTP HEAD method for the specified URL.
         *
         * @param url the URL to which the HEAD request is to be made
         * @return a CurlRequest object configured with the HEAD method and the specified URL
         */
        public static CurlRequest head(final String url) {
            return new CurlRequest(Method.HEAD, url);
        }
    
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  9. 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)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlFilterServiceImplTest.java

            // Verify
            assertEquals(3, includePatterns.size());
            assertEquals(3, excludePatterns.size());
    
            // Verify all calls were made
            verify(dataHelper).addIncludeUrlPattern(sessionId, "https://example.com/.*");
            verify(dataHelper).addIncludeUrlPattern(sessionId, "https://test.com/.*");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 11.1K bytes
    - Viewed (0)
Back to top