Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for Caf (0.01 seconds)

  1. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

        public void test_htmlEntity_mixedContent() throws Exception {
            final String data = "<html><body><p>Caf&#233; &amp; Bar</p></body></html>";
            final Document document = getDocument(data);
            final String bodyText = document.getElementsByTagName("BODY").item(0).getTextContent();
            assertTrue(bodyText.contains("Caf\u00E9"));
            assertTrue(bodyText.contains("& Bar"));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

       */
      @Test
      fun hostnameInPunycodeNfcAndNfd() {
        // café can be NFC (é is one code point) or NFD (e plus ´ as two code points).
        val hostNfc = "café.com"
        val hostNfcPunycode = "xn--caf-dma.com"
        val hostNfd = "café.com"
        val hostNfdPunycode = "xn--cafe-yvc.com"
        assertEquals(hostNfcPunycode, "http://$hostNfc/".toHttpUrl().host)
    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