Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for numero (0.19 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

    public interface Location {
    
        /**
         * Return the line number where the current event ends,
         * returns -1 if none is available.
         * @return the current line number
         */
        int getLineNumber();
    
        /**
         * Return the column number where the current event ends,
         * returns -1 if none is available.
         * @return the current column number
         */
        int getColumnNumber();
    
        /**
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

        @Test
        void testMng6572() {
            String a = "20190126.230843"; // resembles a SNAPSHOT
            String b = "1234567890.12345"; // 10 digit number
            String c = "123456789012345.1H.5-beta"; // 15 digit number
            String d = "12345678901234567890.1H.5-beta"; // 20 digit number
    
            checkVersionsOrder(a, b);
            checkVersionsOrder(b, c);
            checkVersionsOrder(a, c);
            checkVersionsOrder(c, d);
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

         * is given by {@link #getSource()}.
         *
         * @return the one-based index of the line containing the problem or a non-positive value if unknown
         */
        int getLineNumber();
    
        /**
         * Gets the one-based index of the column containing the problem. The column number should refer to some text file
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * In a package hierarchy, the {@linkplain #descriptors} map has either zero or one entry.
         * In a module hierarchy, the descriptors map may have an arbitrary number of entries,
         * including one (so the map size cannot be used as a criterion).
         *
         * @see #isModuleHierarchy()
         */
        private final boolean isModuleHierarchy;
    
        /**
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/full-interpolation/pom.xml

        A depends on property B, and property B depends on property C and so on.
      </description>
    
      <properties>
        <!--
        NOTE: Both the ordering (i.e. neither ascending nor descending) and the number of properties is crucial to
        exhibit the bug.
        -->
        <property23>${property22}</property23>
        <property21>${property20}</property21>
        <property19>${property18}</property19>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.4K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    For changes of a trivial nature to comments and documentation, it is not always
    necessary to create a new ticket in JIRA.  In this case, it is appropriate to
    start the first line of a commit with '(doc)' instead of a ticket number.
    
    Additional Resources
    --------------------
    
    + [Contributing patches](https://maven.apache.org/guides/development/guide-maven-development.html#Creating_and_submitting_a_patch)
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    ## KIND, either express or implied.  See the License for the
    ## specific language governing permissions and limitations
    ## under the License.
    ##
    
    
    Apache Maven includes a number of components and libraries with separate
    copyright notices and license terms. Your use of those components are
    subject to the terms and conditions of the following licenses:
    ##
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Sep 13 20:57:31 GMT 2021
    - 3.7K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            List<Plugin> activeProfilePlugins = activeProfile.getBuild().getPlugins();
            assertEquals(2, activeProfilePlugins.size(), "Number of active profile plugins");
    
            checkBuildPluginWithArtifactId(
                    activeProfilePlugins,
                    "plugin-all-profiles",
                    "Active all ||${project.basedir}||",
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

        builds, dependency management, documentation creation, site
        publication, and distribution publication are all controlled from
        the declarative file. Maven can be extended by plugins to utilise a
        number of other development tools for reporting or the build
        process.
      </description>
      <url>http://maven.apache.org/</url>
      <inceptionYear>2001</inceptionYear>
      <properties>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Sep 11 08:52:20 GMT 2021
    - 22.4K bytes
    - Viewed (0)
  10. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

        builds, dependency management, documentation creation, site
        publication, and distribution publication are all controlled from
        the declarative file. Maven can be extended by plugins to utilise a
        number of other development tools for reporting or the build
        process.
      </description>
      <url>http://maven.apache.org/</url>
      <inceptionYear>2001</inceptionYear>
      <properties>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
Back to top