Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for twemoji (0.05 seconds)

  1. docs/en/docs/management-tasks.md

    ## Edit PR Titles
    
    * Edit the PR title to start with an emoji from [gitmoji](https://gitmoji.dev/).
        * Use the emoji character, not the GitHub code. So, use `🐛` instead of `:bug:`. This is so that it shows up correctly outside of GitHub, for example in the release notes.
        * For translations use the `🌐` emoji ("globe with meridians").
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            assertEquals(3, result.length);
            assertEquals("日本語", result[0]);
            assertEquals("한국어", result[1]);
            assertEquals("\"中文\"", result[2]);
    
            // Emoji and special symbols - quotes preserved
            value = "\"🚀rocket\",\"@symbol\",\"#hashtag\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            final Map<String, Object> params = new HashMap<>();
            params.put("japanese", "こんにちは");
            params.put("emoji", "😀");
    
            assertEquals("こんにちは", groovyEngine.evaluate("return japanese", params));
            assertEquals("😀", groovyEngine.evaluate("return emoji", params));
        }
    
        /**
         * Test that empty return statement returns null
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/suggest/entity/SuggestItemBoundaryTest.java

            assertTrue("Should contain special characters", item.getText().contains("!@#$"));
        }
    
        @Test
        public void test_textWithUnicode() {
            // Test with various Unicode characters: emoji, Chinese, Arabic, etc.
            String[] text = { "日本語", "中文", "한국어", "العربية" };
            String[][] readings = { { "nihongo" }, { "zhongwen" }, { "hangugeo" }, { "arabic" } };
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Jan 17 05:10:37 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  5. docs/changelogs/changelog_2x.md

     *  **OkHttp now rejects request headers that contain invalid characters.** This
        includes potential security problems (newline characters) as well as simple
        non-ASCII characters (including international characters and emoji).
    
     *  **Call canceling is more reliable.**  We had a bug where a socket being
         connected wasn't being closed when the application used `Call.cancel()`.
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 26.6K bytes
    - Click Count (0)
Back to Top