Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 53 for eines (0.03 seconds)

  1. .teamcity/scripts/CheckWrapper.java

        }
    
        private static String readWrapperVersion() throws IOException {
            Path props = Paths.get("gradle/wrapper/gradle-wrapper.properties");
            List<String> lines = Files.readAllLines(props, StandardCharsets.UTF_8);
            String distributionUrl =
                lines.stream()
                    .map(String::trim)
                    .filter(l -> !l.isEmpty() && !l.startsWith("#"))
                    .filter(l -> l.startsWith("distributionUrl"))
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/FixProjectHealthTask.kt

                if (!file.exists()) return@forEach
    
                val lines = file.readLines().toMutableList()
                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(""))
    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)
  3. src/main/webapp/js/admin/moment-with-locales.min.js

    :"let"):n+"lety"}}function Es(e,a,t,s){var n={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?n[t][0]:n[t][1]}function Fs(e,a,t,s){var n={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],w:["eine Woche","einer...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 360.5K bytes
    - Click Count (2)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java

            );
    
        private void gatherBadSnippetsInFile(File file, Map<File, List<Error>> errors) {
            List<String> lines = new ArrayList<>();
            try (java.util.stream.Stream<String> stream = Files.lines(file.toPath())) {
                stream.forEach(lines::add);
            } catch (IOException ex) {
                // If a file can't be read, add an error
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Aug 29 10:12:17 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  5. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratePackageInfoDataTask.kt

        @TaskAction
        fun action() {
            val results = mutableListOf<Pair<String, String>>()
    
            for (packageInfoFile in packageInfoFiles.files) {
                val packageLine = packageInfoFile.useLines { lines -> lines.first { it.startsWith("package") } }
                val packageName = packageLineRegex.find(packageLine)!!.groupValues[1]
                results.add(packageName to packageInfoFile.relativeTo(baseDir).path)
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            String result = scoreUpdater.execute();
    
            // Check format with class name, colon, count, and newline
            String[] lines = result.split("\n");
            assertEquals(2, lines.length);
            assertTrue(lines[0].matches("TestScoreBooster : \\d+"));
            assertTrue(lines[1].matches("TestScoreBooster : \\d+"));
        }
    
        // Test with null pointer exception
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  7. .teamcity/scripts/CheckBadMerge.java

        }
    
        private static List<String> branchesOf(String commit) throws IOException, InterruptedException, ExecutionException {
            List<String> lines = getStdoutLines(new String[] {"git", "branch", "-r", "--contains", commit});
            List<String> out = new ArrayList<>();
            for (String line : lines) {
                String s = line.replace("*", "").trim();
                if (!s.isEmpty()) {
                    out.add(s);
                }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            /** Buffered reader for input stream. */
            private BufferedReader br;
    
            /** List to store captured output lines. */
            private final List<String> list = new LinkedList<>();
    
            /** Maximum number of lines to buffer. */
            private final int maxLineBuffer;
    
            /**
             * Constructor for InputStreamThread.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

                // Verify content structure
                boolean hasThreadLine = lines.stream().anyMatch(line -> line.startsWith("Thread:"));
                boolean hasStackTraceLine = lines.stream().anyMatch(line -> line.startsWith("\tat "));
    
                assertTrue("Should contain thread information", hasThreadLine);
                assertTrue("Should contain stack trace information", hasStackTraceLine);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt

        }
    
        private
        fun findEndOfListSection(content: String, startAfterIntro: Int): Int {
            val lines = content.substring(startAfterIntro).lines()
            var pos = startAfterIntro
            var pastBlankLine = false
            for (line in lines) {
                if (pastBlankLine && !line.startsWith("- ") && line.isNotBlank()) {
                    return pos
                }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:49:33 GMT 2026
    - 5.1K bytes
    - Click Count (0)
Back to Top