Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for COM (0.39 sec)

  1. README.md

     - [Confluence/Jira](https://github.com/codelibs/fess-ds-atlassian)
     - [Box](https://github.com/codelibs/fess-ds-box)
     - [CSV](https://github.com/codelibs/fess-ds-csv)
     - [Database](https://github.com/codelibs/fess-ds-db)
     - [Dropbox](https://github.com/codelibs/fess-ds-dropbox)
     - [Elasticsearch](https://github.com/codelibs/fess-ds-elasticsearch)
     - [Git](https://github.com/codelibs/fess-ds-git)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java

            method.invoke(crawlerThread, "http://example.com/child", "http://example.com/", 1.0f, 2);
    
            verify(urlQueueService, times(1)).offerAll(anyString(), any());
        }
    
        /**
         * Test storeChildUrl with depth exceeding maxDepth.
         */
        public void test_storeChildUrl_exceedsMaxDepth() throws Exception {
            when(urlFilter.match("http://example.com/child")).thenReturn(true);
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            assertEquals("http://www.example.com/page2.html", sitemaps[1].getLoc());
            assertEquals("http://www.example.com/page3.html", sitemaps[2].getLoc());
            assertEquals("https://www.example.com/page4.html", sitemaps[3].getLoc());
        }
    
        public void test_parseXmlSitemapsIndex_missingLoc() {
            // Sitemap index with missing loc should skip that entry
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/builder/RequestDataBuilderTest.java

            RequestData data1 = context.build();
            assertEquals("https://example.com", data1.getUrl());
    
            // Modify context
            context.url("https://modified.com");
    
            RequestData data2 = context.build();
            assertEquals("https://modified.com", data2.getUrl());
    
            // data1 should also be modified (same object)
            assertEquals("https://modified.com", data1.getUrl());
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/curl/CurlRequestTest.java

            Proxy proxy = Proxy.NO_PROXY;
    
            CurlRequest result = request.proxy(proxy);
    
            assertSame(request, result); // Fluent API
            assertSame(proxy, request.proxy());
        }
    
        @Test
        public void testEncodingMethod() {
            CurlRequest request = new CurlRequest(Method.GET, "https://example.com");
            String encoding = "ISO-8859-1";
    
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  6. fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterServiceTest.java

            assertTrue(patterns.get(0).matcher("http://example.com/page1").matches());
            assertFalse(patterns.get(0).matcher("http://other.com/page1").matches());
    
            urlFilterService.delete(sessionId);
        }
    
        public void test_addExcludeUrlFilter_singleTx() {
            final String sessionId = "session2";
            final String urlPattern = "http://example.com/admin/.*";
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/extractor/csv/test.csv

    Name,Email,Age,Department
    John Doe,john@example.com,30,Engineering
    Jane Smith,jane@example.com,28,Marketing
    Bob Johnson,bob@example.com,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)
  8. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

    import org.codelibs.fess.exception.StorageException;
    
    import com.google.api.gax.paging.Page;
    import com.google.auth.oauth2.GoogleCredentials;
    import com.google.cloud.NoCredentials;
    import com.google.cloud.storage.Blob;
    import com.google.cloud.storage.BlobId;
    import com.google.cloud.storage.BlobInfo;
    import com.google.cloud.storage.Bucket;
    import com.google.cloud.storage.BucketInfo;
    import com.google.cloud.storage.Storage;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java

            data.putValue(ExtractData.URL, "https://example.com/test.pdf");
            data.putValues(ExtractData.FILE_PASSWORDS, new String[] { "pass1", "pass2" });
    
            assertEquals("test.pdf", data.getValues(ExtractData.RESOURCE_NAME_KEY)[0]);
            assertEquals("https://example.com/test.pdf", data.getValues(ExtractData.URL)[0]);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/ResponseDataUtilTest.java

                    return new ByteArrayInputStream("Test response body".getBytes());
                }
    
                @Override
                public String getUrl() {
                    return "http://example.com/test";
                }
            };
    
            File tempFile = ResponseDataUtil.createResponseBodyFile(responseData);
    
            assertNotNull(tempFile);
            assertTrue(tempFile.exists());
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top