Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for 9200 (0.03 sec)

  1. src/test/java/org/codelibs/fess/helper/CurlHelperTest.java

            curlHelper.init();
    
            NodeManager nodeManager = getNodeManager(curlHelper);
            assertNotNull(nodeManager);
        }
    
        public void test_init_hostsWithSpaces() {
            setupMockConfig(" localhost:9200 , localhost:9201 , localhost:9202 ", "", "");
    
            curlHelper.init();
    
            NodeManager nodeManager = getNodeManager(curlHelper);
            assertNotNull(nodeManager);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

                }
            }
        }
    
        public void test_getSearchEngineHttpAddress_withValue() {
            String testAddress = "http://localhost:9200";
            String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
    
            try {
                System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, testAddress);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/ITBase.java

        private static final Logger logger = LogManager.getLogger(ITBase.class);
        public static final String DEFAULT_FESS_URL = "http://localhost:8080";
        public static final String DEFAULT_SEARCH_ENGINE_URL = "http://localhost:9200";
        public static final String DEFAULT_TEST_TOKEN = "E44TjYrJQadtGBFFuECA0SBqqVtqj7lRGmhYep53ixNdvlRxnkhwqCVCpRoO";
        public static final String DEFAULT_TEST_TOKEN_ID = "testToken";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

            String originalValue = System.getProperty(FesenClient.HTTP_ADDRESS);
            try {
                System.setProperty(FesenClient.HTTP_ADDRESS, "http://localhost:9200");
                assertEquals("http://localhost:9200", System.getProperty(FesenClient.HTTP_ADDRESS));
            } finally {
                if (originalValue != null) {
                    System.setProperty(FesenClient.HTTP_ADDRESS, originalValue);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/curl/CurlTest.java

                SSLContext sslContext = SSLContext.getInstance("TLS");
                sslContext.init(null, trustManagerFactory.getTrustManagers(), null);
    
                Curl.get("https://localhost:9200/").sslSocketFactory(sslContext.getSocketFactory()).execute(response -> {
                    final String content = response.getContentAsString();
                    logger.info(content);
                    assertTrue(content.length() > 0);
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            // Test with client parameters
            configParameters = "client.host=localhost\nclient.port=9200";
            result = ParameterUtil.createConfigParameterMap(configParameters);
            assertEquals(2, result.get(ConfigName.CLIENT).size());
            assertEquals("localhost", result.get(ConfigName.CLIENT).get("host"));
            assertEquals("9200", result.get(ConfigName.CLIENT).get("port"));
            assertEquals(0, result.get(ConfigName.CONFIG).size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

        public void test_executeSuggestCreator_withLocalFesen() {
            createRequiredDirectories();
            suggestJob.useLocalFesen(true);
            System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, "http://localhost:9200");
    
            mockProcessHelper.setExitValue(0);
            mockProcessHelper.setOutput("Success");
    
            try {
                suggestJob.executeSuggestCreator();
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                        }
                    });
                    runner.build(config);
    
                    final int port = runner.node().settings().getAsInt("http.port", 9200);
                    httpAddress = "http://localhost:" + port;
                    logger.warn("Embedded OpenSearch is running. This configuration is not recommended for production use.");
                    break;
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            assertEquals("3", pnList.get(2));
            assertEquals("4", pnList.get(3));
    
            qrList = new QueryResponseList(null, 0, 20, 0) {
                @Override
                public int size() {
                    return 20;
                }
            };
            qrList.allRecordCount = 200;
            qrList.calculatePageInfo();
            pnList = qrList.getPageNumberList();
            assertEquals(6, pnList.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        // Now we check for known false positives using a set of known false positives.
        // (These are all of the false positives under 900.)
        ImmutableSet<Integer> falsePositives =
            ImmutableSet.of(
                49, 51, 59, 163, 199, 321, 325, 363, 367, 469, 545, 561, 727, 769, 773, 781);
        for (int i = 1; i < 900; i += 2) {
          if (!falsePositives.contains(i)) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top