Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Processing (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                        result = true;
                        // don't stop processing in case a future segment explicitly excludes this repo
                    }
                    // check for external:http:*
                    else if (EXTERNAL_HTTP_WILDCARD.equals(repo) && isExternalHttpRepo(originalRepository)) {
                        result = true;
                        // don't stop processing in case a future segment explicitly excludes this repo
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingListener.java

     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    /**
     * Defines events that the model builder fires during construction of the effective model. When a listener encounters
     * errors while processing the event, it can report these problems via {@link ModelBuildingEvent#problems()}.
     */
    public interface ModelBuildingListener {
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java

            this.projectId = projectId;
            this.pomFile = pomFile;
        }
    
        public ProjectBuildingException(List<ProjectBuildingResult> results) {
            super("Some problems were encountered while processing the POMs");
            this.projectId = "";
            this.results = results;
        }
    
        public File getPomFile() {
            return pomFile;
        }
    
        /**
         * @deprecated use {@link #getPomFile()}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingEvent.java

         *
         * @return The model building request being processed, never {@code null}.
         */
        ModelBuilderRequest request();
    
        /**
         * Gets the container used to collect problems that were encountered while processing the event.
         *
         * @return The container used to collect problems that were encountered, never {@code null}.
         */
        ModelProblemCollector problems();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                    if (edge == null) { // no edges - don't need this vertex anymore
                        if (entry.equals(v)) { // unless it's an entry point.
                            // currently processing the entry point - it should not have any entry incident edges
                            res.getEntry().getMd().setWhy("This is a graph entry point. No links.");
                        } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactScopeEnum.java

        private int id;
    
        // Constructor
        ArtifactScopeEnum(int id) {
            this.id = id;
        }
    
        int getId() {
            return id;
        }
    
        /**
         * Helper method to simplify null processing
         *
         * @param scope a scope or {@code null}
         * @return the provided scope or DEFAULT_SCOPE
         */
        public static ArtifactScopeEnum checkScope(ArtifactScopeEnum scope) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

                        result = true;
                        // don't stop processing in case a future segment explicitly excludes this repo
                    }
                    // check for external:http:*
                    else if (EXTERNAL_HTTP_WILDCARD.equals(repo) && isExternalHttpRepo(originalRepository)) {
                        result = true;
                        // don't stop processing in case a future segment explicitly excludes this repo
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                logger.debug("Ignoring unresolvable plugin version {}", version, e);
                return false;
            } catch (Exception e) {
                // ignore for now and delay failure to higher level processing
                return true;
            }
    
            try {
                pluginManager.checkPrerequisites(pluginDescriptor);
            } catch (Exception e) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        //      mojo descriptor which comes back. All the free form parsing needs to be done somewhere else, this is
        //      really the function of the CLI, and then the pre-processing of that output still needs to be fed into
        //      a hinting process which helps flesh out the full specification of the plugin. The plugin manager should
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  10. maven-core/plugin-manager.txt

    * The repository model where plugins can be stored and cataloged
    * Bridging this into an OSGi system: if this could be done then we can basically take over p2
    
    TODO
    
    - dealing with processing of input and adapting GAVs before searching i.e. plugin groups in Maven and default searching
    - how to deal with resolution from different places like local/remote/workspace
    - how to incorporate the metadata processor to start with
    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)
Back to top