Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for waren (0.16 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/BuilderCommonTest.java

            getBuilderCommon(logger)
                    .resolveBuildPlan(session1, ProjectDependencyGraphStub.A, taskSegment1, new HashSet<>());
    
            verify(logger)
                    .warn("Version not locked for default bindings plugins ["
                            + "stub-plugin-initialize, "
                            + "stub-plugin-process-resources, "
                            + "stub-plugin-compile, "
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                        }
    
                        if (logger.isDebugEnabled()) {
                            message += ": " + e.getMessage();
                        }
    
                        logger.warn(message);
                    }
    
                    if (project != null) {
                        Relocation relocation = null;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/MojoLogWrapper.java

        }
    
        @Override
        public void warn(CharSequence content) {
            if (isWarnEnabled()) {
                logger.warn(toString(content));
            }
        }
    
        @Override
        public void warn(CharSequence content, Throwable error) {
            if (isWarnEnabled()) {
                logger.warn(toString(content), error);
            }
        }
    
        @Override
        public void warn(Throwable error) {
            logger.warn("", error);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

        /**
         * @return true if the <b>warn</b> error level is enabled
         */
        boolean isWarnEnabled();
    
        /**
         * Send a message to the user in the <b>warn</b> error level.
         *
         * @param content
         */
        void warn(CharSequence content);
    
        /**
         * Send a message (and accompanying exception) to the user in the <b>warn</b> error level.<br>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    public boolean isErrorEnabled(); public boolean isFatalEnabled(); public boolean isInfoEnabled(); public boolean isTraceEnabled(); public boolean isWarnEnabled(); public void trace(Object); public void trace(Object, Throwable); public void warn(Object); public void warn(Object, Throwable); } org/apache/commons/logging/impl/Log4JCategoryLog.class package org.apache.commons.logging.impl; public final synchronized class Log4JCategoryLog implements org.apache.commons.logging.Log { private static final String...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 30.9K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                            + " (" + repository.getUrl() + "): " + e.getMessage();
    
                    if (logger.isDebugEnabled()) {
                        logger.warn(msg, e);
                    } else {
                        logger.warn(msg);
                    }
                }
            }
    
            // if it already exists locally we were just trying to force it - ignore the update
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // ----------------------------------------------------------------------
    
        int LOGGING_LEVEL_DEBUG = Logger.LEVEL_DEBUG;
    
        int LOGGING_LEVEL_INFO = Logger.LEVEL_INFO;
    
        int LOGGING_LEVEL_WARN = Logger.LEVEL_WARN;
    
        int LOGGING_LEVEL_ERROR = Logger.LEVEL_ERROR;
    
        int LOGGING_LEVEL_FATAL = Logger.LEVEL_FATAL;
    
        int LOGGING_LEVEL_DISABLED = Logger.LEVEL_DISABLED;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                    logger.warn("The following dependencies could not be resolved at this point of the build"
                            + " but seem to be part of the reactor:");
    
                    for (Dependency dependency : result.getUnresolvedDependencies()) {
                        logger.warn("o {}", dependency);
                    }
    
                    logger.warn("Try running the build up to the lifecycle phase \"package\"");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    isDebugEnabled(); public abstract void info(String); public abstract void info(String, Throwable); public abstract boolean isInfoEnabled(); public abstract void warn(String); public abstract void warn(String, Throwable); public abstract boolean isWarnEnabled(); public abstract void error(String); public abstract void error(String, Throwable); public abstract boolean isErrorEnabled(); public abstract void fatalError(String); public abstract void fatalError(String, Throwable); public abstract boolean isFatalErrorEnabled();...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 35.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                                if (connectTimeoutXml != null) {
                                    connectTimeout = Integer.parseInt(connectTimeoutXml.getValue());
                                    logger.warn("Settings for server {} uses legacy format", server.getId());
                                }
                            }
                        }
                    }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
Back to top