Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for devel (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

        private String getMessage(String message, Throwable exception) {
            String fullMessage = (message != null) ? message : "";
    
            // To break out of possible endless loop when getCause returns "this", or dejaVu for n-level recursion (n>1)
            Set<Throwable> dejaVu = Collections.newSetFromMap(new IdentityHashMap<>());
            for (Throwable t = exception; t != null && t != t.getCause(); t = t.getCause()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *   <li><b>Module hierarchy:</b> if {@code module-info.class} files are found in sub-directories,
         *       at a deep intentionally restricted to one level, then builds a map of module names found
         *       in the descriptor of each sub-directory.</li>
         * </ul>
         *
         * Otherwise if the given path is a JAR file, then there is a choice:
         * <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            String level = ConfigUtils.getString(session, null, MAVEN_PLUGIN_VALIDATION_KEY);
            if (level == null || level.isEmpty()) {
                return DEFAULT_VALIDATION_LEVEL;
            }
            try {
                return ValidationReportLevel.valueOf(level.toUpperCase(Locale.ENGLISH));
            } catch (IllegalArgumentException e) {
                logger.warn(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top