- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 197 for rspace (0.04 seconds)
-
.teamcity/scripts/FindCommits.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 5.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java
} @Test public void test_render_paragraphWithLineBreak() { String markdown = "Line 1 \nLine 2"; String result = markdownRenderer.render(markdown); // Two spaces at end of line creates a line break assertTrue(result.contains("<br")); } @Test public void test_render_specialHtmlEntities() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
String fieldNamePart = field.getName().substring("LABELS_".length()); String expectedValuePart = fieldNamePart.toLowerCase() .replace("_", ".") .replaceAll("\\.placeholder$", ".placeholder") .replaceAll("\\.placeholder\\.(.+)", ".placeholder_$1");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
}); } try { if (entity.isLoggingEnabled()) { jobLogId[0] = UUID.randomUUID().toString().replace("-", ""); entity.start(Map.of(Constants.JOB_LOG_ID, jobLogId[0])); } else { entity.start(); } } catch (final Exception e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 10.7K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
e.printStackTrace() } } private fun TestFilesCleanupProjectState.prepareReportForCiPublishing(reports: List<File>) { val projectPathName = projectPath.replace(':', '-') val projectBuildDirPath = projectBuildDir.get().toPath() reports.filter { it.isDirectory }.forEach { val destFile = rootBuildDir.resolve("report$projectPathName-${it.name}.zip")
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
// Test with null groups user = new TestFessUser("testuser", new String[] {}, null, new String[] {}); assertNull(user.getGroupNames()); // Test with groups containing spaces groups = new String[] { "group one", "group two" }; user = new TestFessUser("testuser", new String[] {}, groups, new String[] {}); assertArrayEquals(groups, user.getGroupNames()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
*/ protected String escapeHtml(final String text) { if (text == null) { return ""; } return text.replace("&", "&").replace("<", "<").replace(">", ">").replace("\"", """).replace("'", "'"); } /** * Gets the maximum number of history messages to retain. * * @return the maximum number of history messages */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
"EqualsGetClass", // Let's agree if we want to adopt Error Prone's idea of valid equals() "JdkObsolete", // Most of the checks are good, but we do not want to replace all LinkedLists without a good reason // NEVER "AssignmentExpression", // Not using it is more a matter of taste.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:47:14 GMT 2026 - 8.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
} final StreamResponse response = new StreamResponse(StringUtil.EMPTY); final String name = pi.getName(); final String encodedName = URLEncoder.encode(name, Constants.UTF_8_CHARSET).replace("+", "%20"); response.header("Content-Disposition", "attachment; filename=\"" + name + "\"; filename*=utf-8''" + encodedName); response.header("Pragma", "no-cache");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 22.1K bytes - Click Count (0) -
src/main/webapp/js/chat.js
var phaseMessage = config.labels.phases[data.phase] || data.message || 'Processing...'; // Replace __keywords__ placeholder with actual keywords if (data.keywords) { phaseMessage = phaseMessage.replace('__keywords__', data.keywords); } showStatus('thinking', phaseMessage);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0)