Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 33 for lspace (0.04 seconds)

  1. src/main/webapp/js/purify.min.js

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            return fessConfig.isCrawlerDocumentDuplicateTermRemoved();
        }
    
        /**
         * Gets the array of space character codes from configuration.
         *
         * @return array of character codes to be treated as spaces
         */
        protected int[] getSpaceChars() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:27:04 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Leading and trailing spaces
            value = " value1 , value2 , value3 ";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
            assertEquals(" value1 ", result[0]);
            assertEquals(" value2 ", result[1]);
            assertEquals(" value3 ", result[2]);
    
            // Spaces in quoted values
            value = "\" spaced value \",\"  another  \"";
    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)
  4. src/main/webapp/css/chat.css

        background-color: #f4f5f7;
    }
    
    .filter-check-item .filter-check {
        margin: 0;
        flex-shrink: 0;
    }
    
    .filter-check-label {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .filter-dropdown-footer {
        padding: 0.25rem 0.5rem;
        border-top: 1px solid #ebecf0;
        text-align: right;
    }
    
    .filter-clear-group {
        font-size: 0.75rem;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            assertSame(execJob, result);
    
            // Test with leading/trailing spaces
            result = execJob.logSuffix("  another suffix  ");
            assertEquals("another_suffix", execJob.logSuffix);
    
            // Test with multiple spaces
            result = execJob.logSuffix("multi  space  suffix");
            assertEquals("multi__space__suffix", execJob.logSuffix);
        }
    
        // Test timeout setter
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            pathMappingList.add(pathMapping);
    
            pathMappingHelper.cachedPathMappingList = pathMappingList;
    
            String text = "\"file:///home/user with spaces/\"";
            assertEquals("\"http://localhost/user with spaces/\"", pathMappingHelper.replaceUrls(text));
        }
    
        @Test
        public void test_replaceUrl_withSpecialCharacters() {
            final String sessionId = "test";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            System.setProperty("empty", "");
            String value = "${empty}";
            assertEquals("", ResourceUtil.resolve(value));
    
            // Test property with just spaces
            System.setProperty("spaces", "   ");
            value = "${spaces}";
            assertEquals("   ", ResourceUtil.resolve(value));
    
            // Test long property name
            System.setProperty("very.long.property.name.with.many.dots", "long");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

                System.clearProperty(Constants.FESS_CONFIG_PREFIX + testKey);
            }
        }
    
        // Test property with spaces
        @Test
        public void test_get_propertyWithSpaces() {
            String testKey = "property.with.spaces";
            String valueWithSpaces = "  value with spaces  ";
            System.setProperty(Constants.FESS_CONFIG_PREFIX + testKey, valueWithSpaces);
    
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

            assertEquals("RAdministrators", permissionHelper.encode("{role}Administrators"));
            assertEquals("D1user with spaces", permissionHelper.encode("(deny){user}user with spaces"));
            assertEquals("DR_role_with_underscores", permissionHelper.encode("(deny){role}_role_with_underscores"));
            assertEquals("D2group123", permissionHelper.encode("(deny){group}group123"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            assertEquals("line1 line2 line3", activityHelper.normalizeScript("line1\nline2\rline3"));
            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() {
    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)
Back to Top