Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for ends (0.17 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

         * <li>The parent uses aggregation and refers to the child via the modules section</li>
         * <li>The module path to the child is considered to
         * point at the POM rather than its base directory if the path ends with ".xml" (ignoring case)</li>
         * <li>The name of the child's base directory matches the artifact id of the child.</li>
         * </ul>
         * Note that for the sake of independence from the user
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  2. 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 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/NodeVisitor.java

         *         specified dependency node's children and proceed to its next sibling
         */
        boolean enter(@Nonnull Node node);
    
        /**
         * Ends the visit to the specified dependency node.
         *
         * @param node the dependency node to visit
         * @return <code>true</code> to visit the specified dependency node's next sibling, <code>false</code> to skip the
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    specified matchers match the examined object. endsWith(String) - Static method in class org.hamcrest.core.StringEndsWith Creates a matcher that matches if the examined String ends with the specified String. endsWith(String) - Static method in class org.hamcrest.CoreMatchers Creates a matcher that matches if the examined String ends with the specified String. equalTo(T) - Static method in class org.hamcrest.core.IsEqual Creates a matcher that matches when the examined object is logically equal to the...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultMessageBuilder.java

        public MessageBuilder append(CharSequence cs) {
            buffer.append(cs);
            return this;
        }
    
        @Override
        public MessageBuilder append(CharSequence cs, int start, int end) {
            buffer.append(cs, start, end);
            return this;
        }
    
        @Override
        public MessageBuilder append(char c) {
            buffer.append(c);
            return this;
        }
    
        @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMessageBuilder.java

        public MessageBuilder append(CharSequence cs) {
            buffer.append(cs);
            return this;
        }
    
        @Override
        public MessageBuilder append(CharSequence cs, int start, int end) {
            buffer.append(cs, start, end);
            return this;
        }
    
        @Override
        public MessageBuilder append(char c) {
            buffer.append(c);
            return this;
        }
    
        @Override
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * matching mirror will pass through unchanged. Note: This method must be called before
         * {@link #injectAuthentication(List, List)} or the repositories will end up with the wrong credentials.
         *
         * @param repositories The repositories into which to inject the mirror information, may be {@code null}.
         * @param mirrors The available mirrors, may be {@code null}.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/exception/ExceptionHandler.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.exception;
    
    /**
     * Transform an exception into useful end-user message.
     *
     * @since 3.0-alpha-3
     */
    public interface ExceptionHandler {
        ExceptionSummary handleException(Throwable e);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1023 bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/BomLifecycleMappingProvider.java

            "install", "org.apache.maven.plugins:maven-install-plugin:" + INSTALL_PLUGIN_VERSION + ":install",
            "deploy", "org.apache.maven.plugins:maven-deploy-plugin:" + DEPLOY_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: bom
    
        @Inject
        public BomLifecycleMappingProvider() {
            super(BINDINGS);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 10:53:44 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

            <filtering>true</filtering>
          </testResource>
        </testResources>
      </build>
    
      <reporting>
        <outputDirectory>${project.build.directory}/site</outputDirectory>
      </reporting>
    
    </project>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
Back to top