Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Reimplement (0.2 sec)

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

    from interface org.hamcrest.SelfDescribing describeTo Constructor Detail BaseMatcher public BaseMatcher() Method Detail _dont_implement_Matcher___instead_extend_BaseMatcher_ @Deprecated public final void _dont_implement_Matcher___instead_extend_BaseMatcher_() Deprecated. Description copied from interface: Matcher This method simply acts a friendly reminder not to implement Matcher directly and instead extend BaseMatcher. It's easy to ignore JavaDoc, but a bit harder to ignore compile errors . Specified...
    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)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            return new MappedList<>(node.getRepositories(), session::getRemoteRepository);
        }
    
        @Override
        public Optional<RemoteRepository> getRepository() {
            // TODO: v4: implement
            throw new UnsupportedOperationException("Not implemented yet");
        }
    
        @Override
        public String asString() {
            String nodeString = super.asString();
    
            if (!verbose) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            return new MappedList<>(node.getRepositories(), session::getRemoteRepository);
        }
    
        @Override
        public Optional<RemoteRepository> getRepository() {
            // TODO: v4: implement
            throw new UnsupportedOperationException("Not implemented yet");
        }
    
        @Override
        public String asString() {
            String nodeString = super.asString();
    
            if (!verbose) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/configuration-management.apt

     could encapsulate everything we need about the project in the POM including
     plugin parameters and anything else.
    
     We once had a document that Vincent and I agreed upon and I was about to
     implement it and then I disappeared for 8 months so it never came to pass.
    
     So I guess it's important to figure out what people are using properties
     files for and see if we can't incorporate it all into the POM. Or if we do
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                    public String id() {
                        return lifecycle.getId();
                    }
    
                    @Override
                    public Collection<Phase> phases() {
                        // TODO: implement
                        throw new UnsupportedOperationException();
                    }
                };
            }
        }
    
        static class CleanLifecycle implements Lifecycle {
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    append(char); private void toJavaSyntax(String); private void toJavaSyntax(char); } org/hamcrest/BaseMatcher.class package org.hamcrest; public abstract synchronized class BaseMatcher implements Matcher { public void BaseMatcher(); public final void _dont_implement_Matcher___instead_extend_BaseMatcher_(); public void describeMismatch(Object, Description); public String toString(); } org/hamcrest/Condition$1.class package org.hamcrest; synchronized class Condition$1 { } org/hamcrest/Condition$Matched.class package...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  7. maven-core/plugin-manager.txt

    // The plugin manager should load up a directory structure of plugins.
    // - a plugin per directory where the plugin is present with its deps
    // - a plugin that has its dependencies packaged up with it
    // - implement filters and create a test where a plugin fails if the right classes are not filtered
    // - plugins with a dependency the same as the core but different versions, make it fail then fix it
    
      /*
     *
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactory.java

    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface ToolchainFactory {
        // TODO: implement ToolchainFactory
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    2000-2006 hamcrest.org */ package org.hamcrest; /** * BaseClass for all Matcher implementations. * * @see Matcher */ public abstract class BaseMatcher<T> implements Matcher<T> { /** * @see Matcher#_dont_implement_Matcher___instead_extend_BaseMatcher_() */ @Override @Deprecated public final void _dont_implement_Matcher___instead_extend_BaseMatcher_() { // See Matcher interface for an explanation of this method. } @Override public void describeMismatch(Object item, Description description) { description.appendText("was...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolver.java

     */
    package org.apache.maven.repository.metadata;
    
    import org.apache.maven.artifact.ArtifactScopeEnum;
    
    /**
     * Resolves conflicts in the supplied dependency graph.
     * Different implementations will implement different conflict resolution policies.
     *
     */
    @Deprecated
    public interface GraphConflictResolver {
        String ROLE = GraphConflictResolver.class.getName();
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.7K bytes
    - Viewed (0)
Back to top