Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 2012 (1.12 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    each step depends on the result of the previous * step and we can stop processing as soon as a step fails. These classes provide * infrastructure for writing such a sequence. * * Based on https://github.com/npryce/maybe-java * @author Steve Freeman 2012 http://www.hamcrest.com */ public abstract class Condition<T> { public static final NotMatched<Object> NOT_MATCHED = new NotMatched<Object>(); public interface Step<I, O> { Condition<O> apply(I value, Description mismatch); } private Condition() {...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         * <li><code>[1.0,2.0]</code> Versions 1.0 to 2.0 (both included)</li>
         * <li><code>[1.5,)</code> Versions 1.5 and higher</li>
         * <li><code>(,1.0],[1.2,)</code> Versions up to 1.0 (included) and 1.2 or higher</li>
         * </ul>
         *
         * @param spec string representation of a version or version range
         * @return a new {@link VersionRange} object that represents the spec
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

        <version>4.13.1</version>
    
        <name>JUnit</name>
        <description>JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.</description>
        <url>http://junit.org</url>
        <inceptionYear>2002</inceptionYear>
        <organization>
            <name>JUnit</name>
            <url>http://www.junit.org</url>
        </organization>
        <licenses>
            <license>
                <name>Eclipse Public License 1.0</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  4. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            assertFalse(range.isSelectedVersionKnown(artifact), CHECK_SELECTED_VERSION_KNOWN);
            assertNull(range.getSelectedVersion(artifact), CHECK_SELECTED_VERSION);
    
            range = VersionRange.createFromVersionSpec("(,1.0],[1.2,)");
            restrictions = range.getRestrictions();
            assertEquals(2, restrictions.size(), CHECK_NUM_RESTRICTIONS);
            restriction = restrictions.get(0);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 44.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2002</inceptionYear>
      <mailingLists>
        <mailingList>
          <name>Maven Announcements List</name>
          <post>******@****.***</post>
          <subscribe>******@****.***</subscribe>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                session.setProjectDependencyGraph(projectDependencyGraph);
            }
    
            return graphResult;
        }
    
        @Deprecated
        // 5 January 2014
        protected Logger getLogger() {
            return logger;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pom.xml

        <plexusXmlVersion>4.0.4</plexusXmlVersion>
        <resolverVersion>2.0.0-alpha-11</resolverVersion>
        <securityDispatcherVersion>2.0</securityDispatcherVersion>
        <sisuVersion>0.9.0.M3</sisuVersion>
        <slf4jVersion>2.0.13</slf4jVersion>
        <stax2ApiVersion>4.2.1</stax2ApiVersion>
        <wagonVersion>3.5.3</wagonVersion>
        <woodstoxVersion>6.6.2</woodstoxVersion>
        <xmlunitVersion>2.10.0</xmlunitVersion>
      </properties>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2002</inceptionYear>
      <mailingLists>
        <mailingList>
          <name>Maven Announcements List</name>
          <post>******@****.***</post>
          <subscribe>******@****.***</subscribe>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            cal.setTimeZone(TimeZone.getTimeZone("Europe/Berlin"));
    
            cal.set(Calendar.HOUR_OF_DAY, 1);
            cal.set(Calendar.MINUTE, 16);
            cal.set(Calendar.SECOND, 0);
            cal.set(Calendar.YEAR, 2014);
            cal.set(Calendar.MONTH, Calendar.JUNE);
            cal.set(Calendar.DATE, 16);
    
            Date firstTestDate = cal.getTime();
    
            cal.set(Calendar.MONTH, Calendar.NOVEMBER);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top