- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 137 for line3 (0.02 seconds)
-
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratorTask.kt
content.subList(0, markerPos) } else { emptyList() } markdownFile.bufferedWriter().use { PrintWriter(it).run { for (line in head) { println(line) } graph(elements.get()) } } } private fun PrintWriter.graph(elements: List<ArchitectureElement>) { println(
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 3.8K bytes - Click Count (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Sep 23 13:49:45 GMT 2025 - 12K bytes - Click Count (0) -
.teamcity/scripts/CheckBadMerge.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 16:25:09 GMT 2026 - 9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 15.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java
assertTrue(body != null && body.length() > 0, "Response body should not be empty"); // NDJSON format: each line is a JSON object String[] lines = body.trim().split("\n"); assertTrue(lines.length > 0, "Should have at least one line in NDJSON response"); } @Test public void testScrollSearch_withNum() { Map<String, String> params = new HashMap<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
stopwordsFile.reload(null, is); assertEquals(2, stopwordsFile.stopwordsItemList.size()); // The content creates two lines: "word\n1" and "word\" assertTrue(stopwordsFile.stopwordsItemList.stream().anyMatch(item -> item.getInput().contains("word"))); } // Test StopwordsUpdater inner class @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java
// The regex `^\\s*\\[\\[(.*)\\]\\]` looks for lines starting with '[[...]]' // and captures the content within the brackets. Files.readAllLines(file).forEach(line -> { if (line.matches("^\\s*\\[\\[(.*)\\]\\].*")) { String anchorName = line.replaceAll("^\\s*\\[\\[(.*)\\]\\].*$", "$1");
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Aug 21 15:38:58 GMT 2025 - 8.5K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
src/main/resources/ ├── fess_label.properties # Base English labels (fallback) ├── fess_label_[locale].properties # Language-specific labels (~1,056 lines) ├── fess_message.properties # Base English messages (fallback) └── fess_message_[locale].properties # Language-specific messages (~200 lines) ``` ### Naming Convention - **Language only**: `fess_label_en.properties`, `fess_label_ja.properties`
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
} } @Test public void test_reload_withEmptyLines() throws Exception { // Create content with empty lines and comments String content = "# Comment line\n" + "\n" + // empty line "word1\n" + " \n" + // whitespace line (may be treated as content) "# Another comment\n" + "word2\n"; // Write content to test file writeTestFile(content);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt
): BuildFileMutation { val lines = buildFile.readText().lines() val start = lines.indexOfFirst { Regex("\\s+computedRuntimes\\s+\\{").matches(it) } if (start == -1) { return BuildFileMutation.Failure("Missing computedRuntimes block for $projectPath: ${buildFile.asClickableFileUrl()}") } val end = lines.indexOfFirst(start + 1) {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 13.8K bytes - Click Count (0)