Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for metodo (0.17 sec)

  1. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

        /**
         * Class StringFormatter.
         *
         * @version $Revision$ $Date$
         */
        public interface StringFormatter {
    
            // -----------/
            // - Methods -/
            // -----------/
    
            /**
             * Method toString.
             */
            String toString(InputLocation location);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Sep 05 16:06:44 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

        // fully populated Plugin objects, including executions with goals and default configuration taken
        // from the plugin.xml inside a plugin.
        //
        // TODO This whole method could probably removed by injecting lifeCyclePluginAnalyzer straight into client site.
        // TODO But for some reason the whole plexus appcontext refuses to start when I try this.
    
        public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles(String packaging) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            List<Artifact> list = new ArrayList<>(getArtifacts().size());
    
            for (Artifact a : getArtifacts()) {
                // TODO classpath check doesn't belong here - that's the other method
                if (a.getArtifactHandler().isAddedToClasspath()) {
                    // TODO let the scope handler deal with this
                    if (isCompilePathElement(a.getScope())) {
                        list.add(a);
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  4. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/Nonnull.java

     * Annotated fields must not be null after construction has completed.
     * <p>
     * When this annotation is applied to a method it applies to the method return value.
     *
     * @see Nullable
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD})
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  5. api/maven-api-di/src/main/java/org/apache/maven/api/di/Priority.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    
    import static java.lang.annotation.ElementType.METHOD;
    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Target({TYPE, METHOD})
    @Retention(RUNTIME)
    @Documented
    public @interface Priority {
        int value();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public void ClassMap(Class); Class getCachedClass(); public reflect.Method findMethod(String, Object[]) throws MethodMap$AmbiguousException; private void populateMethodCache(); private String makeMethodKey(reflect.Method); private static String makeMethodKey(String, Object[]); private static reflect.Method[] getAccessibleMethods(Class); private static int getAccessibleMethods(Class, ClassMap$MethodInfo[], int); public static reflect.Method getPublicMethod(reflect.Method); private static reflect.Method...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
  7. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public void ClassMap(Class); Class getCachedClass(); public reflect.Method findMethod(String, Object[]) throws MethodMap$AmbiguousException; private void populateMethodCache(); private String makeMethodKey(reflect.Method); private static String makeMethodKey(String, Object[]); private static reflect.Method[] getAccessibleMethods(Class); private static int getAccessibleMethods(Class, ClassMap$MethodInfo[], int); public static reflect.Method getPublicMethod(reflect.Method); private static reflect.Method...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 164.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

        /**
         * Returns {@code true} if passed in artifact is originating from local repository. In other words, we want
         * to process and store tracking information ONLY into local repository, not to any other place. This method
         * filters out currently built artifacts, as events are fired for them as well, but their resolved artifact
         * file would point to checked out source-tree, not the local repository.
         * <p>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/AbstractConflictResolverTest.java

        // constructors -----------------------------------------------------------
    
        public AbstractConflictResolverTest(String roleHint) throws Exception {
            this.roleHint = roleHint;
        }
    
        // TestCase methods -------------------------------------------------------
    
        /*
         * @see junit.framework.TestCase#setUp()
         */
        @BeforeEach
        public void setUp() throws Exception {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataReader.java

         */
        Metadata read(File input, Map<String, ?> options) throws IOException, MetadataParseException;
    
        /**
         * Reads the metadata from the specified character reader. The reader will be automatically closed before the method
         * returns.
         *
         * @param input The reader to deserialize the metadata from, must not be {@code null}.
         * @param options The options to use for deserialization, may be {@code null} to use the default values.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
Back to top