Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for lines (0.34 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java

        public static List<String> format(String... lines) {
            int size = DEFAULT_MAX_SIZE;
            int remainder = size - 4; // 4 chars = 2 box_char + 2 spaces
            List<String> result = new ArrayList<>();
            StringBuilder sb = new StringBuilder(size);
            // first line
            sb.setLength(0);
            repeat(sb, BOX_CHAR, size);
            result.add(sb.toString());
            // lines
            for (String line : lines) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 07 20:55:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

            List<String> lines = new ArrayList<>();
            for (String line = this.readLine(); line != null && !line.isEmpty(); line = readLine()) {
                lines.add(line);
            }
            return lines;
        }
    
        @Override
        public void write(String line) throws IOException {
            doDisplay(line);
        }
    
        @Override
        public void writeLine(String line) throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                        it.hasNext(); ) {
                    URL url = it.next();
                    List<String> lines;
                    try (InputStream is = url.openStream();
                            BufferedReader reader = new BufferedReader(new InputStreamReader(is, StandardCharsets.UTF_8))) {
                        lines = reader.lines()
                                .map(String::trim)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

        void testAptConsistency() throws Exception {
            File apt = getTestFile("src/site/apt/artifact-handlers.apt");
    
            List<String> lines = Files.readAllLines(apt.toPath());
    
            for (String line : lines) {
                if (line.startsWith("||")) {
                    String[] cols = line.split("\\|\\|");
                    String[] expected = new String[] {
                        "",
                        "type",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 14 10:51:16 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/shared/init

            basedir=`cd "$basedir" && pwd -P`
            if [ ! -d "$basedir" ]; then
              echo "Directory $basedir extracted from the -f/--file command-line argument ${arg} does not exist" >&2
              exit 1
            fi
          else
            echo "POM file ${arg} specified with the -f/--file command line argument does not exist" >&2
            exit 1
          fi
          break
        fi
        if [ "$arg" = "-f" -o "$arg" = "--file" ]; then
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 05 22:52:54 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            return appendEscapeSequence('E');
        }
    
        /**
         * Moves the cursor to the beginning of the n-th line below. If the parameter n is negative it
         * moves the cursor to the beginning of the n-th line above.
         *
         * @param n the number of lines to move the cursor
         * @return this Ansi instance
         */
        public Ansi cursorDownLine(final int n) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. .github/pull_request_template.md

     - [ ] Format the pull request title like `[MNG-XXX] SUMMARY`,
           where you replace `MNG-XXX` and `SUMMARY` with the appropriate JIRA issue.
     - [ ] Also format the first line of the commit message like `[MNG-XXX] SUMMARY`.
           Best practice is to use the JIRA issue title in both the pull request title and in the first line of the commit message.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/bin/mvnDebug.cmd

    @REM   MAVEN_DEBUG_ADDRESS (Optional) Set the debug address. Default value is localhost:8000
    @REM -----------------------------------------------------------------------------
    
    @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
    @echo off
    @REM set title of command window
    title %0
    @REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
    @if "%MAVEN_BATCH_ECHO%"=="on" echo %MAVEN_BATCH_ECHO%
    
    @setlocal
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jul 25 20:33:33 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

            if (relocationsEntries == null) {
                return null;
            }
            String[] entries = relocationsEntries.split(",");
            try (Stream<String> lines = Arrays.stream(entries)) {
                List<Relocation> relocationList = lines.filter(
                                l -> l != null && !l.trim().isEmpty())
                        .map(l -> {
                            boolean global;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                }
            }
    
            String[] lines = NEXT_LINE.split(msg);
            String currentColor = "";
    
            for (int i = 0; i < lines.length; i++) {
                // add eventual current color inherited from previous line
                String line = currentColor + lines[i];
    
                // look for last ANSI escape sequence to check if nextColor
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top