Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for dialed (0.14 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            b.addDependency("a", "1.0");
            assertThrows(
                    CyclicDependencyException.class,
                    () -> collect(a),
                    "Should have failed on cyclic dependency not involving project");
        }
    
        @Test
        @Disabled("works, but we don't fail on cycles presently")
        void testCircularDependencyIncludingCurrentProject()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @param coordinate coordinates of the artifact to resolve
         * @return requested artifact together with the path to its file
         * @throws org.apache.maven.api.services.ArtifactResolverException if the artifact resolution failed
         *
         * @see org.apache.maven.api.services.ArtifactResolver#resolve(Session, Collection)
         */
        @Nonnull
        Map.Entry<Artifact, Path> resolveArtifact(@Nonnull ArtifactCoordinate coordinate);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                final MavenSession currentSession,
                final MavenProject mavenProject,
                Throwable t,
                final long buildStartTime) {
            // record the error and mark the project as failed
            long buildEndTime = System.currentTimeMillis();
            buildContext.getResult().addException(t);
            buildContext.getResult().addBuildSummary(new BuildFailure(mavenProject, buildEndTime - buildStartTime, t));
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

                    return null;
                }
    
                try {
                    return ReflectionValueExtractor.evaluate(expression, root, false);
                } catch (Exception e) {
                    addFeedback("Failed to extract \'" + expression + "\' from: " + root, e);
                }
    
                return null;
            }
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                if (configurator != null) {
                    try {
                        container.release(configurator);
                    } catch (ComponentLifecycleException e) {
                        logger.debug("Failed to release mojo configurator - ignoring.");
                    }
                }
            }
        }
    
        private void validateParameters(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  6. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            assertThrows(
                    InvalidVersionSpecificationException.class,
                    () -> VersionRange.createFromVersionSpec(version),
                    "Version " + version + " should have failed to construct");
        }
    
        @Test
        void testContains() throws InvalidVersionSpecificationException {
            ArtifactVersion actualVersion = new DefaultArtifactVersion("2.0.5");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 44.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

            } catch (IOException e) {
                problems.add(new DefaultBuilderProblem(
                        null,
                        -1,
                        -1,
                        e,
                        "Failed to use environment variables for interpolation: " + e.getMessage(),
                        BuilderProblem.Severity.WARNING));
            }
    
            return new SettingsTransformer(value -> {
                        try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

            assertThrows(
                    ArtifactNotFoundException.class,
                    () -> artifactResolver.resolve(k, remoteRepositories(), localRepository()),
                    "Resolution succeeded when it should have failed");
        }
    
        @Test
        void testResolutionOfAnArtifactWhereOneRemoteRepositoryIsBadButOneIsGood() throws Exception {
            Artifact l = createRemoteArtifact("l", "1.0-SNAPSHOT");
            deleteLocalArtifact(l);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

                    try {
                        delegate.setupRealm(classRealm, request);
                    } catch (Exception e) {
                        logger.error(
                                delegate.getClass().getName() + " failed to setup class realm " + classRealm + ": "
                                        + e.getMessage(),
                                e);
                    }
                }
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    <var>item</var> matches, otherwise <code>false</code>. * * @see BaseMatcher */ boolean matches(Object item); /** * Generate a description of why the matcher has not accepted the item. * The description will be part of a larger description of why a matching * failed, so it should be concise. * This method assumes that <code>matches(item)</code> is false, but * will not check this. * * @param item The item that the Matcher has rejected. * @param mismatchDescription * The description to be built or appended to....
    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)
Back to top