Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Tr (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

     * <caption>Expression matrix</caption>
     * <tr><th>expression</th>                     <th></th>               <th>evaluation result</th></tr>
     * <tr><td><code>session.*</code></td>         <td></td>               <td></td></tr>
     * <tr><td><code>project.*</code></td>         <td></td>               <td></td></tr>
     * <tr><td><code>settings.*</code></td>        <td></td>               <td></td></tr>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 30 23:39:19 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

     * <tr><td><code>plugin.*</code></td>          <td></td>               <td></td></tr>
     * <tr><td><code>*</code></td>                 <td></td>               <td>user properties</td></tr>
     * <tr><td><code>*</code></td>                 <td></td>               <td>project properties</td></tr>
     * <tr><td><code>*</code></td>                 <td></td>               <td>system properties</td></tr>
     * </table>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
            "http://www.w3.org/TR/html4/loose.dtd">
    <!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    HTML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Jul 02 16:47:10 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/shared/init

        if [ "$arg" = "-f" -o "$arg" = "--file" ]; then
          found_file_switch=1
        fi
      done
      echo "$basedir"
    )
    }
    
    # concatenates all lines of a file
    concat_lines() {
      if [ -f "$1" ]; then
        echo "`tr -s '\r\n' '  ' < "$1"`"
      fi
    }
    
    MAVEN_PROJECTBASEDIR="`find_maven_basedir "$@"`"
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 05 22:52:54 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    This product includes software developed by
    Rome (https://rome.dev.java.net/).
    
    about.html in archive lib/org.eclipse.sisu.inject-0.3.5.jar
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
    <title>About org.eclipse.sisu.inject</title>
    </head>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Sep 10 19:27:25 GMT 2022
    - 5.5K bytes
    - Viewed (0)
  6. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            checkVersionsOrder(a, b); // Should still be true
        }
    
        @Test
        void testLocaleIndependent() {
            Locale orig = Locale.getDefault();
            Locale[] locales = {Locale.ENGLISH, new Locale("tr"), Locale.getDefault()};
            try {
                for (Locale locale : locales) {
                    Locale.setDefault(locale);
                    checkVersionsEqual("1-abcdefghijklmnopqrstuvwxyz", "1-ABCDEFGHIJKLMNOPQRSTUVWXYZ");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
Back to top