Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sank (0.74 sec)

  1. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenSimpleLogger.java

                default:
                    return errorRenderedLevel;
            }
        }
    
        @Override
        protected void doWrite(StringBuilder buf, Throwable t) {
            Consumer<String> sink = logSink;
            if (sink != null) {
                sink.accept(buf.toString());
            } else {
                super.doWrite(buf, t);
            }
        }
    
        @Override
        protected void writeThrowable(Throwable t, PrintStream stream) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

         * the filename of the source file.
         *
         * @param basedir the directory where the artifact is stored
         * @param finalName the name of the artifact sans extension
         * @param artifact the artifact definition
         * @param localRepository the local repository to install into
         * @throws ArtifactInstallationException if an error occurred installing the artifact
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

            }
    
            final ArtifactStatus that = (ArtifactStatus) o;
    
            return rank == that.rank;
        }
    
        public int hashCode() {
            return rank;
        }
    
        public String toString() {
            return key;
        }
    
        public int compareTo(ArtifactStatus s) {
            return rank - s.rank;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven4ScopeManagerConfiguration.java

                    all(),
                    MavenArtifactProperties.LOCAL_PATH));
    
            // == sanity check
            if (result.size() != org.apache.maven.api.DependencyScope.values().length - 1) { // sans "undefined"
                throw new IllegalStateException("Maven4 API dependency scope mismatch");
            }
    
            return result;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

        private final MessageBuilderFactory messageBuilderFactory;
    
        /**
         * Default ctor is used in IT and most probably some 3rd party code. For those cases, we do provide sane defaults
         * but given this is a component, injection should be used, replacing direct instantiation.
         *
         * @deprecated Do not use this ctor directly, inject this component instead.
         */
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

                    all(),
                    MavenArtifactProperties.LOCAL_PATH));
    
            // == sanity check
            if (result.size() != DependencyScope.values().length - 1) { // sans "undefined"
                throw new IllegalStateException("Maven4 API dependency scope mismatch");
            }
    
            return result;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top