Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for thank (0.1 sec)

  1. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      the copyright license set forth in this Agreement.
    
      e) Notwithstanding the terms of any Secondary License, no
      Contributor makes additional grants to any Recipient (other than
      those set forth in this Agreement) as a result of such Recipient's
      receipt of the Program under the terms of a Secondary License
      (if permitted under the terms of Section 3).
    
    3. REQUIREMENTS
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                                    .getResult()
                                    .addException(new Exception(
                                            "Build failed due to log statements with a higher severity than allowed. "
                                                    + "Fix the logged issues or remove flag --fail-on-severity (-fos).")));
                }
    
                logResult(event.getSession());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/plugin.mdo

                configuration). This is useful when you want to force the user to use common POM elements rather than
                plugin configurations, as in the case where you want to use the artifact's final name as a parameter. In
                this case, you want the user to modify {@code <build><finalName/></build>} rather
                than specifying a value for finalName directly in the plugin configuration section. It is also useful to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

            addSnapshotVersion(source.getVersioning(), before, artifact);
            // nothing should be updated, as the target was already updated at a later date than source
            assertFalse(target.merge(source));
            assertEquals(1, target.getVersioning().getSnapshotVersions().size());
            assertEquals(sv1, target.getVersioning().getSnapshotVersions().get(0));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            attributeOptions.add(attribute.value());
            return this;
        }
    
        /**
         * Moves the cursor to row n, column m. The values are 1-based.
         * Any values less than 1 are mapped to 1.
         *
         * @param row    row (1-based) from top
         * @param column column (1 based) from left
         * @return this Ansi instance
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/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
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                throw new ChecksumFailedException(message, cause);
            } else if (!ArtifactRepositoryPolicy.CHECKSUM_POLICY_IGNORE.equals(checksumPolicy)) {
                // warn if it is set to anything other than ignore
                logger.warn("*** CHECKSUM FAILED - " + message + " - IGNORING");
            }
            // otherwise it is ignore
        }
    
        private void verifyChecksum(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/offline-mode.apt

      anticipate the inevitable network failures that accompany being physically
      disconnected from the network, and adjust it's behavior accordingly.
    
      It is more than simply understanding that m2 cannot go and check for the
      latest version of some snapshot artifact. If m2 is offline, SCM operations
      cannot succeed; no artifact downloads can take place, regardless of whether
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

            } else if (isDigit) {
                buf = stripLeadingZeroes(buf);
                if (buf.length() <= MAX_INTITEM_LENGTH) {
                    // lower than 2^31
                    return new IntItem(buf);
                } else if (buf.length() <= MAX_LONGITEM_LENGTH) {
                    // lower than 2^63
                    return new LongItem(buf);
                }
                return new BigIntegerItem(buf);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        Software with files containing Modifications, in each case including
        portions thereof.
    
        1.4. "Executable" means the Covered Software in any form other than
        Source Code.
    
        1.5. "Initial Developer" means the individual or entity that first
        makes Original Software available under this License.
    
        1.6. "Larger Work" means a work which combines Covered Software or
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top