- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 33 for spaties (0.1 seconds)
-
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) -
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) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
String name = "param-name_123!@#"; String[] values = { "value with spaces", "value@special#chars", "日本語" }; RequestParameter param = new RequestParameter(name, values); assertEquals(name, param.getName()); assertNotNull(param.getValues()); assertEquals(3, param.getValues().length); assertEquals("value with spaces", param.getValues()[0]);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
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) -
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) -
build-logic-settings/configuration-cache-compatibility/src/main/kotlin/gradlebuild.configuration-cache-compatibility.settings.gradle.kts
"JavaExecProjectGeneratorTask", "NativeProjectWithDepsGeneratorTask", "PerformanceTest", "DetermineBaselines", ) -> true // Third parties tasks // Publish plugin task.name == "login" -> true // Kotlin/JS // https://youtrack.jetbrains.com/issue/KT-50881 task.name in listOf("generateExternals") -> true
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 26 15:18:40 GMT 2026 - 3.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
@SuppressWarnings("unchecked") final Map<String, StateData> states = (Map<String, StateData>) session.getAttribute(STATES); if (states != null) { final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); states.entrySet() .stream()Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/FacetResponseTest.java
@Test public void test_base64_encoding_decoding() { // Test that base64 encoding and decoding works correctly String originalString = "test field with spaces"; String encoded = BaseEncoding.base64().encode(originalString.getBytes(StandardCharsets.UTF_8)); String decoded = new String(BaseEncoding.base64().decode(encoded), StandardCharsets.UTF_8);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
} @Test public void test_getDetectText_whitespaceNormalization() { String text = "Text with\tmultiple\n\r spaces"; String result = languageHelper.getDetectText(text); assertEquals("Text with multiple spaces", result); } @Test public void test_getSupportedLanguage_supported() { assertEquals("ja", languageHelper.getSupportedLanguage("ja"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
default String[] getCrawlerDocumentSpaces() { String[] spaces = (String[]) propMap.get(CRAWLER_DOCUMENT_SPACES); if (spaces == null) { spaces = Arrays.stream(getCrawlerDocumentSpaceCharsAsArray()).mapToObj(Character::toString).toArray(n -> new String[n]); propMap.put(CRAWLER_DOCUMENT_SPACES, spaces); } return spaces; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0)