Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 631 for Learning (0.11 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

                        .builder()
                        .warning("Parameter '")
                        .warning(name)
                        .warning("' is unknown for plugin '")
                        .warning(mojoExecution.getArtifactId())
                        .warning(":")
                        .warning(mojoExecution.getVersion())
                        .warning(":")
                        .warning(mojoExecution.getGoal());
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/logging/Slf4jLoggerManager.java

        // notice to self: what was this method supposed to do?
        //
        /**
         * <b>Warning</b>: ignored.
         */
        @Override
        public void returnComponentLogger(String role) {}
    
        /**
         * <b>Warning</b>: ignored.
         */
        @Override
        public void returnComponentLogger(String role, String hint) {}
    
        /**
         * <b>Warning</b>: ignored (always return <code>0</code>).
         */
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/validation/DefaultSettingsValidator.java

                    validateBannedCharacters(
                            problems, "mirrors.mirror.id", Severity.WARNING, mirror.getId(), null, ILLEGAL_REPO_ID_CHARS);
    
                    if ("local".equals(mirror.getId())) {
                        addViolation(
                                problems,
                                Severity.WARNING,
                                "mirrors.mirror.id",
                                null,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Ascii.java

     * {@code 0x7F}), and to strings containing such characters.
     *
     * <p>ASCII utilities also exist in other classes of this package:
     *
     * <ul>
     *   <!-- TODO(kevinb): how can we make this not produce a warning when building gwt javadoc? -->
     *   <li>{@link StandardCharsets#US_ASCII} specifies the {@code Charset} of ASCII characters.
     *   <li>{@link CharMatcher#ascii} matches ASCII characters and provides text processing methods
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedPluginValidator.java

        private String logDeprecatedMojo(MojoDescriptor mojoDescriptor) {
            return messageBuilderFactory
                    .builder()
                    .warning("Goal '")
                    .warning(mojoDescriptor.getGoal())
                    .warning("' is deprecated: ")
                    .warning(mojoDescriptor.getDeprecated())
                    .toString();
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuildingExceptionTest.java

                    "Message should contain second error details");
    
            assertTrue(
                    !message.contains("[WARNING]") || message.contains("[WARNING] Deprecated plugin usage"),
                    "Warnings should be filtered when errors are present or shown if explicitly included");
        }
    
        @Test
        void testExceptionMessageWithOnlyWarnings() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jul 26 19:15:57 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

      Don't use these flags. Using deprecated flags causes the server to print a warning. Using a removed flag causes the server to abort the startup.
    
    * The following deprecated flags were removed from `kubelet`:
    
      * `api-servers` - add apiserver addresses to the kubeconfig file instead.
    
      Don't use these flags. Using deprecated flags causes the kubelet to print a warning. Using a removed flag causes the kubelet to abort the startup.
    
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. compat/maven-builder-support/src/test/java/org/apache/maven/building/ProblemCollectorFactoryTest.java

            collector.setSource("pom.xml");
            collector.add(Problem.Severity.ERROR, "Error message", 10, 5, null);
            collector.add(Problem.Severity.WARNING, "Warning message", 15, 3, null);
    
            List<Problem> problems = collector.getProblems();
            assertEquals(2, problems.size(), "Should collect both problems");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Jul 20 20:19:43 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/log/JulLoggerAdapter.java

        @Override
        public boolean isWarnEnabled() {
            return logger.isLoggable(Level.WARNING);
        }
    
        @Override
        public void warn(final String message) {
            logger.logp(Level.WARNING, sourceClass, null, message);
        }
    
        @Override
        public void warn(final String message, final Throwable t) {
            logger.logp(Level.WARNING, sourceClass, null, message, t);
        }
    
        @Override
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/ConsoleIcon.java

        /**
         * Success/completion icon.
         */
        SUCCESS('✓', "[OK]"),
    
        /**
         * Error/failure icon.
         */
        ERROR('✗', "[ERROR]"),
    
        /**
         * Warning icon.
         */
        WARNING('⚠', "[WARNING]"),
    
        /**
         * Detail/bullet point icon.
         */
        DETAIL('•', "-"),
    
        /**
         * Action/arrow icon.
         */
        ACTION('→', ">");
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Jul 15 09:35:08 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top