Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for true (0.14 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java

                    if (majorVersion == null) {
                        fallback = true;
                    }
                } else {
                    fallback = true;
                }
                if (idx < tok.length) {
                    minorVersion = getNextIntegerToken(tok[idx++]);
                    if (minorVersion == null) {
                        fallback = true;
                    }
                }
                if (idx < tok.length) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Nov 17 15:50:51 GMT 2023
    - 6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java

            return read(path, true);
        }
    
        @Nonnull
        default T read(@Nonnull Path path, boolean strict) throws XmlReaderException {
            return read(XmlReaderRequest.builder().path(path).strict(strict).build());
        }
    
        @Nonnull
        default T read(@Nonnull InputStream input) throws XmlReaderException {
            return read(input, true);
        }
    
        @Nonnull
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Nov 17 15:52:15 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            if (p1 == p2) {
                return true;
            }
            // update policy doesn't affect contents
            return p1.isEnabled() == p2.isEnabled() && Objects.equals(p1.getChecksumPolicy(), p2.getChecksumPolicy());
        }
    
        private static boolean repositoryEquals(RemoteRepository r1, RemoteRepository r2) {
            if (r1 == r2) {
                return true;
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         *
         * @return {@code true} if the project is the top level project for this build
         */
        boolean isTopProject();
    
        /**
         * Returns a boolean indicating if the project is a root project,
         * meaning that the {@link #getRootDirectory()} and {@link #getBasedir()}
         * points to the same directory, and that either {@link Model#isRoot()}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

      <description>
        Configuration of custom lifecycle mappings for the plugin, as generally stored in
        {@code META-INF/maven/lifecycle.xml} in a plugin's jar artifact.
      </description>
      <classes>
        <class rootElement="true" xml.tagName="lifecycles" xsd.compositor="sequence">
          <name>LifecycleConfiguration</name>
          <version>1.0.0</version>
          <description>Root element of the {@code lifecycle.xml} file.</description>
          <fields>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyProperties.java

        /**
         * Returns immutable "map view" of all the properties.
         */
        @Nonnull
        Map<String, String> asMap();
    
        /**
         * Returns {@code true} if given flag is {@code true}.
         */
        boolean checkFlag(@Nonnull String flag);
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Mon Nov 27 19:18:14 GMT 2023
    - 2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     */
    public interface RootLocator {
    
        String UNABLE_TO_FIND_ROOT_PROJECT_MESSAGE = "Unable to find the root directory. "
                + "Create a .mvn directory in the root directory or add the root=\"true\""
                + " attribute on the root project's model to identify it.";
    
        @Nonnull
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

            <filtering>true</filtering>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
          </testResource>
          <testResource>
            <directory>${project.basedir}/src/test/resources-filtered</directory>
            <filtering>true</filtering>
          </testResource>
        </testResources>
      </build>
    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)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

         */
        private static boolean validateStringEmpty(
                List<BuilderProblem> problems, String fieldName, String string, String message) {
            if (string == null || string.length() == 0) {
                return true;
            }
    
            addViolation(problems, BuilderProblem.Severity.WARNING, fieldName, null, message);
    
            return false;
        }
    
        /**
         * Asserts:
         * <p/>
         * <ul>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Result.java

         *
         * @param model
         * @param problems
         */
        public static <T> Result<T> error(T model, Iterable<? extends ModelProblem> problems) {
            return new Result<>(true, model, problems);
        }
    
        /**
         * New result - determine whether error or success by checking problems for errors
         *
         * @param model
         * @param problems
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.8K bytes
    - Viewed (0)
Back to top