Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for reduce (0.19 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

            Set<ModelSource> sources = mappedSources.get(groupId + ":" + artifactId);
            if (sources == null) {
                return null;
            }
            return sources.stream()
                    .reduce((a, b) -> {
                        throw new IllegalStateException(String.format(
                                "No unique Source for %s:%s: %s and %s",
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  2. Jenkinsfile.s390x

                                                      'core-it-suite-reports':'core-it-suite/target/surefire-reports'])
                                deleteDir() // clean up after ourselves to reduce disk space
                            }
                        }
                    }
                }
            }
        }
    }
    
    // run the parallel ITs
    parallel(runITsTasks)
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

            return modelsByGa.getOrDefault(new GAKey(groupId, artifactId), Collections.emptySet()).stream()
                    .filter(m -> version == null || version.equals(getVersion(m)))
                    .reduce((a, b) -> {
                        throw new IllegalStateException(
                                "Multiple modules with key " + a.getGroupId() + ':' + a.getArtifactId());
                    })
                    .orElse(null);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionAnalyzer.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.Optional;
    
    /**
     * Instances of this class are responsible for determining whether it makes sense to "resume" a build (i.e., using
     * the {@code --resume} flag.
     */
    public interface BuildResumptionAnalyzer {
        /**
         * Construct an instance of {@link BuildResumptionData} based on the outcome of the current Maven build.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java

         * @see BuildResumptionDataRepository
         * @return <code>true</code> when it is possible to resume the build, <code>false</code> otherwise.
         */
        boolean canResume();
    
        /**
         * Indicate that the build can or cannot be resumed by a second invocation of Maven.
         * @param canResume <code>true</code> when it is possible to resume the build, <code>false</code> otherwise.
         * @see BuildResumptionDataRepository
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.List;
    
    /**
     * This class holds the information required to enable resuming a Maven build with {@code --resume}.
     */
    public class BuildResumptionData {
        /**
         * The list of projects that remain to be built.
         */
        private final List<String> remainingProjects;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    g, Throwable); } org/codehaus/plexus/personality/plexus/lifecycle/phase/Suspendable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Suspendable { public abstract void suspend(); public abstract void resume(); } org/codehaus/plexus/PlexusContainer$1.class package org.codehaus.plexus; synchronized class PlexusContainer$1 { } org/codehaus/plexus/PlexusContainer.class package org.codehaus.plexus; public abstract interface PlexusContainer { public static...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                        .findFirst()
                        .orElseThrow(() -> new MavenExecutionException(
                                "Could not find project to resume reactor build from: " + selector + " vs "
                                        + formatProjects(projects),
                                request.getPom()));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/inheritance.apt

    
    Maven super model
    
     Inheritance is recursive in Maven but there is a special model which is the implicit super parent in the lineage
     of models you may specify:
    
     all of the models that you specify are collected to produce a lineage and then the super model is place at
     the top of that lineage to provide default values.
    
     The super model is where we place all the values which we believe to be standard, values that can be shared and
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 3.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    org.codehaus.plexus.classworlds.realm.ClassRealm) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void suspend(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void resume(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; protected void endComponentLifecycl(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public org.codehaus.plexus.MutablePlexusContain...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
Back to top