Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for instead (0.18 sec)

  1. maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java

        private final int hashCode;
    
        /**
         * Creates a new source backed by the specified file.
         *
         * @param file The file, must not be {@code null}.
         * @deprecated Use {@link #FileSource(Path)} instead.
         */
        @Deprecated
        public FileSource(File file) {
            this(Objects.requireNonNull(file, "file cannot be null").toPath());
        }
    
        /**
         * Creates a new source backed by the specified file.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    NO FRAMES All Classes Deprecated API Contents Deprecated Methods Deprecated Methods org.hamcrest.Matcher._dont_implement_Matcher___instead_extend_BaseMatcher_() to make org.hamcrest.BaseMatcher._dont_implement_Matcher___instead_extend_BaseMatcher_() org.hamcrest.CoreMatchers.is(Class) use isA(Class type) instead. org.hamcrest.core.Is.is(Class) use isA(Class type) instead. Overview Package Class Use Tree Deprecated Index Help PREV NEXT FRAMES NO FRAMES All Classes help-doc.html Overview Package Class...
    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)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                                + " (" + repository.getUrl() + ")");
            }
    
            if (file == null) {
                // TODO throw something instead?
                return true;
            }
    
            Date lastCheckDate;
    
            if (file.exists()) {
                lastCheckDate = new Date(file.lastModified());
            } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/repository/layout/ArtifactRepositoryLayout.java

    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     * Repository layout.
     *
     * @deprecated Avoid use of this type, if you need access to local repository use repository system session instead.
     */
    @Deprecated
    public interface ArtifactRepositoryLayout {
        String ROLE = ArtifactRepositoryLayout.class.getName();
    
        String getId();
    
        String pathOf(Artifact artifact);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/java/DefaultJavaToolChain.java

     *
     * @deprecated clients that do not require compatibility with Maven 3.2.3 and earlier should link to
     *             {@link JavaToolchainImpl} instead.
     */
    @Deprecated
    public class DefaultJavaToolChain extends JavaToolchainImpl {
        public static final String KEY_JAVAHOME = JavaToolchainImpl.KEY_JAVAHOME;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Feb 07 19:46:28 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java

    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.project.MavenProject;
    
    /**
     */
    public class MojoExecutorStub extends MojoExecutor { // This is being lazy instead of making interface
    
        public final List<MojoExecution> executions = Collections.synchronizedList(new ArrayList<>());
    
        public MojoExecutorStub() {
            super(null, null, null, null, null, null);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

        }
    
        /**
         * Mimics the pre-Maven 4 "selected projects" list.
         * @deprecated Use {@link #getRequiredActiveProjectSelectors()} and {@link #getOptionalActiveProjectSelectors()}
         * instead.
         */
        @Deprecated
        public List<String> getSelectedProjects() {
            return Collections.unmodifiableList(new ArrayList<>(getProjectSelectors(pa -> pa.active)));
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenBuildTimestamp.java

        }
    
        /**
         *
         * @deprecated Use {@link #MavenBuildTimestamp(Instant, Map)} or extract the format and pass it
         *             to {@link #MavenBuildTimestamp(Instant, String)} instead.
         */
        @Deprecated
        public MavenBuildTimestamp(Instant time, Properties properties) {
            this(time, properties != null ? properties.getProperty(BUILD_TIMESTAMP_FORMAT_PROPERTY) : null);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml

      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4116</name>
      <description>
        Test that the project builder does not decode URLs (which must be done by the transport layer instead).
      </description>
    
      <!-- some URLs using percent-encoded characters -->
      <url>https://maven.apache.org/spacy%20path</url>
      <scm>
        <connection>scm:svn:svn+ssh://svn.apache.org/spacy%20path</connection>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

     */
    public class DefaultLifecycleMapping implements LifecycleMapping {
    
        private List<Lifecycle> lifecycles;
    
        private Map<String, Lifecycle> lifecycleMap;
    
        /** @deprecated use lifecycles instead */
        @Deprecated
        private Map<String, LifecyclePhase> phases;
    
        /**
         * Default ctor for plexus compatibility: lifecycles are most commonly defined in Plexus XML, that does field
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:46:36 GMT 2024
    - 4K bytes
    - Viewed (0)
Back to top