Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for com (0.3 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. src/test/java/org/codelibs/curl/CurlTest.java

            assertEquals(Method.GET, Curl.get("http://test.com").method());
            assertEquals(Method.POST, Curl.post("http://test.com").method());
            assertEquals(Method.PUT, Curl.put("http://test.com").method());
            assertEquals(Method.DELETE, Curl.delete("http://test.com").method());
            assertEquals(Method.HEAD, Curl.head("http://test.com").method());
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 16.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. 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)
  5. 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)
  6. 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)
  7. fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataServiceTest.java

            assertNotNull(dataService.getAccessResult("id2", "http://www.id2.com/"));
    
            dataService.store(accessResult1);
            assertNotNull(dataService.getAccessResult("id1", "http://www.id1.com/"));
    
            dataService.deleteAll();
    
            assertNull(dataService.getAccessResult("id1", "http://www.id1.com/"));
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:40:57 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  8. 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)
  9. README.md

    curl4j
    [![Java CI with Maven](https://github.com/codelibs/curl4j/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/curl4j/actions/workflows/maven.yml)
    =====
    
    A simple cURL-like Java HTTP client.
    
    ## Features
    
    - Fluent API for building HTTP requests (GET, POST, PUT, DELETE, HEAD, OPTIONS, CONNECT, TRACE)
    - Support for query parameters, headers, body (String or stream), compression, SSL configuration, proxies, and timeouts
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. 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)
Back to top