Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for causal (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/ProjectCycleException.java

        public ProjectCycleException(String message) {
            super(message);
        }
    
        public ProjectCycleException(String message, CycleDetectedException cause) {
            super(message, cause);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java

    @Deprecated
    public class WagonConfigurationException extends org.apache.maven.repository.legacy.WagonConfigurationException {
        public WagonConfigurationException(String repositoryId, String message, Throwable cause) {
            super(repositoryId, message, cause);
        }
    
        public WagonConfigurationException(String repositoryId, String message) {
            super(repositoryId, message);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/artifact/InvalidDependencyVersionException.java

        public InvalidDependencyVersionException(
                String projectId, Dependency dependency, File pomFile, InvalidVersionSpecificationException cause) {
            super(projectId, formatLocationInPom(dependency), dependency.getVersion(), pomFile, cause);
            this.dependency = dependency;
        }
    
        private static String formatLocationInPom(Dependency dependency) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java

        private final String originalMessage;
        private final String repositoryId;
    
        public WagonConfigurationException(String repositoryId, String message, Throwable cause) {
            super("While configuring wagon for '" + repositoryId + "': " + message, cause);
    
            this.repositoryId = repositoryId;
            this.originalMessage = message;
        }
    
        public WagonConfigurationException(String repositoryId, String message) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/MultipleArtifactsNotFoundException.java

    import java.util.ArrayList;
    import java.util.List;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     * Exception caused when one or more artifacts can not be resolved because they are not found in the
     * local or remote repositories.
     */
    public class MultipleArtifactsNotFoundException extends ArtifactResolutionException {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.4K bytes
    - Viewed (0)
  6. maven-builder-support/src/main/java/org/apache/maven/building/DefaultProblem.java

         * @param columnNumber The one-based index of the column containing the problem or {@code -1} if unknown.
         * @param exception The exception that caused this problem, may be {@code null}.
         */
        DefaultProblem(
                String message, Severity severity, String source, int lineNumber, int columnNumber, Exception exception) {
            this.message = message;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

                ToolchainFactory fact = factories.get(type);
    
                if (fact == null) {
                    logger.error(
                            "Missing toolchain factory for type: " + type + ". Possibly caused by misconfigured project.");
                } else {
                    for (ToolchainModel model : models) {
                        try {
                            ToolchainPrivate toolchain = fact.createToolchain(model);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

                logger.debug(indent + omitted + " (removed - nearer found: " + keptVersion + ")");
            }
        }
    
        public void omitForCycle(Artifact omitted) {
            logger.debug(indent + omitted + " (removed - causes a cycle in the graph)");
        }
    
        public void updateScopeCurrentPom(Artifact artifact, String ignoredScope) {
            logger.debug(indent + artifact + " (not setting artifactScope to: " + ignoredScope + "; local artifactScope "
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  9. Jenkinsfile.s390x

    } catch (org.jenkinsci.plugins.workflow.steps.FlowInterruptedException e) {
        echo "[FAILURE-002] FlowInterruptedException ${e}"
        // this ambiguous condition means a user probably aborted
        if (e.causes.size() == 0) {
            currentBuild.result = "ABORTED"
        } else {
            currentBuild.result = "FAILURE"
        }
        throw e
    } catch (hudson.AbortException e) {
        echo "[FAILURE-003] AbortException ${e}"
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

                    .newSession(session));
    
            legacySupport.setSession(session);
        }
    
        protected abstract String component();
    
        /**
         * Return an existing file, not a directory - causes creation to fail.
         *
         * @throws Exception
         */
        protected ArtifactRepository badLocalRepository() throws Exception {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 13.8K bytes
    - Viewed (0)
Back to top