Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for HOST2 (0.75 seconds)

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

            helper.publishEvent("config_updated", "node2@host2", "web_config");
    
            assertNotNull(capturedBody.get());
            final Map<String, Object> body = coordinatorHelper.parseJson(capturedBody.get());
            assertEquals("event", body.get("type"));
            assertEquals("config_updated", body.get("name"));
            assertEquals("node1@host1", body.get("instanceId"));
            assertEquals("node2@host2", body.get("targetInstanceId"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        // Non-exhaustive tests because implementation is the same as resolve.
        val base = parse("http://host/a/b")
        assertThat(base.newBuilder("https://host2")!!.build())
          .isEqualTo(parse("https://host2/"))
        assertThat(base.newBuilder("//host2")!!.build())
          .isEqualTo(parse("http://host2/"))
        assertThat(base.newBuilder("/path")!!.build())
          .isEqualTo(parse("http://host/path"))
        assertThat(base.newBuilder("path")!!.build())
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Aug 04 07:38:48 GMT 2025
    - 69.9K bytes
    - Click Count (0)
Back to Top