- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for rwhitespace (0.05 seconds)
-
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/FixProjectHealthTask.kt
val dependenciesIndex = lines.indexOfFirst { it.contains("dependencies {") } val whitespace = lines.drop(dependenciesIndex + 1).find { it.isNotBlank() }?.takeWhile { it.isWhitespace() } ?: "" lines.addAll(dependenciesIndex + 1, dependencies.map { "$whitespace$it" } + listOf("")) file.writeText(lines.joinToString("\n")) } }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 03 06:57:08 GMT 2025 - 6.2K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
return redirect(getClass()); // no-op } /** * Sanitizes a filename by removing path traversal sequences and whitespace. * * @param filename the filename to sanitize * @return the sanitized filename */ public static String sanitizeFilename(final String filename) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 23 23:57:26 GMT 2026 - 5.8K bytes - Click Count (0) -
.editorconfig
indent_style = space indent_size = 4 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true spelling_languages = en-US # Markdown files sometimes need trailing whitespaces. [*.md] trim_trailing_whitespace = false [*.{yml,yaml}] indent_size = 2 [gradle/verification-metadata.xml] indent_size = 3 [subprojects/launcher/src/main/resources/release-features.txt]Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Nov 25 07:01:54 GMT 2025 - 582 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/ChatIntentTest.java
assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue(null)); } @Test public void test_fromValue_empty() { // Defaults to UNCLEAR when value is empty or whitespace assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("")); assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue(" ")); } @Test public void test_fromValue_unknown() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 3.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
assertProvideThrowsException("Test'Classification'"); } @Test public void test_provide_withWhitespace() { // Test classification names with whitespace assertProvideThrowsException(" "); assertProvideThrowsException(" "); assertProvideThrowsException("\t"); assertProvideThrowsException("\n"); assertProvideThrowsException("\r");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml
</module> <!-- Braces --> <module name="LeftCurly"/> <module name="RightCurly"/> <module name="NeedBraces"/> <!-- Whitespace --> <module name="GenericWhitespace"/> <module name="EmptyForInitializerPad"/> <module name="EmptyForIteratorPad"/> <module name="MethodParamPad"/> <module name="NoWhitespaceBefore"/>Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Dec 11 10:24:25 GMT 2025 - 6.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
assertNull(result, "getAnchorSet should return null for blank string"); result = crawlerThread.getAnchorSet(" "); assertNull(result, "getAnchorSet should return null for whitespace string"); } /** * Test getAnchorSet with list of URLs */ @Test public void test_getAnchorSet_withList() { FessCrawlerThread crawlerThread = new FessCrawlerThread();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0)