Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 73 for mixed_ (0.04 seconds)

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

            assertEquals("tab1_tab2", activityHelper.normalizeScript("tab1\ttab2"));
            // \t -> _, \n -> space, \r -> space, \n -> space
            assertEquals("mixed_   ", activityHelper.normalizeScript("mixed\t\n\r\n"));
        }
    
        @Test
        public void test_normalizeScript_longScript() {
            // Create a script longer than 100 characters (default max length)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java

            final String jwtClaim = "{\"mixed\":[\"string\",123,true,null]}";
            final Map<String, Object> attributes = new HashMap<>();
    
            authenticator.parseJwtClaim(jwtClaim, attributes);
    
            @SuppressWarnings("unchecked")
            final List<Object> mixed = (List<Object>) attributes.get("mixed");
            assertEquals(4, mixed.size());
            assertEquals("string", mixed.get(0));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 11K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java

            mixedList.add(entity);
            mixedList.add("string");
            mixedList.add(123);
    
            RenderDataUtil.register(data, "mixed", mixedList);
    
            Object result = data.getDataMap().get("mixed");
            assertNotNull(result);
            assertTrue(result instanceof List);
            @SuppressWarnings("unchecked")
            List<Object> resultList = (List<Object>) result;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  4. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`.
    
    ### Reviewing cheatsheet
    
    Before merging the PR, comments starting with 
    - ❌ ❓**must** be fixed
    - 🤔 💅 **should** be fixed
    - 💭 **may** be fixed
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 13 22:36:19 GMT 2024
    - 1.7K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/crawler/transformer/FessTransformerTest.java

            Map<String, Object> dataMap = new HashMap<>();
    
            transformer.putResultDataBody(dataMap, "mixed", "string");
            transformer.putResultDataBody(dataMap, "mixed", 123);
            transformer.putResultDataBody(dataMap, "mixed", true);
    
            Object result = dataMap.get("mixed");
            assertTrue(result instanceof Object[]);
            Object[] resultArray = (Object[]) result;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            assertEquals(3, result.length);
            assertEquals("first", result[0]);
            assertEquals("second", result[1]);
            assertEquals("\"third\"", result[2]);
    
            // Mixed quoted and unquoted - quotes are removed from quoted values
            value = "\"quoted\",unquoted,\"another quoted\"";
            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)
  7. architecture/standards/0009-use-american-english.md

    * **Confusion for users and contributors**: Mixed spellings (e.g., "color" and "colour", "initialize" and "initialise") in the codebase create confusion about which variant to use
    * **Harder code search and refactoring**: Searching for identifiers, method names, or documentation becomes more difficult when multiple spellings exist for the same concept
    * **Inconsistent API surface**: Public APIs with mixed spelling conventions appear less professional and polished
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

            assertEquals(0L, MemoryUtil.sizeOf(new Object[0]));
    
            // Array with null elements
            assertEquals(0L, MemoryUtil.sizeOf(new String[] { null, null }));
    
            // Mixed content array
            assertEquals(84L, MemoryUtil.sizeOf(new Object[] { "test", 123, null }));
    
            // Nested arrays
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java

            assertEquals("/test.log", AdminLogAction.sanitizeFilename("....//test.log"));
            assertEquals("/test.log", AdminLogAction.sanitizeFilename("......//....//test.log"));
    
            // Mixed patterns
            assertEquals("/var/log/other.log", AdminLogAction.sanitizeFilename("../var/log/other.log"));
        }
    
        @Test
        public void test_sanitizeFilename_preservesSingleDot() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java

                    assertEquals("0", list.get(0).get(ID_FIELD));
                } else {
                    fail();
                }
            }
        }
    
        /**
         * Test multiple searchers with mixed result counts.
         */
        @Test
        public void test_multipleSearchersWithMixedResults() throws Exception {
            try (RankFusionProcessor processor = new RankFusionProcessor()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.2K bytes
    - Click Count (0)
Back to Top