Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for asker (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

        /**
         * The event "artifact resolved" if fired WHENEVER an artifact is resolved, BUT it happens also when an artifact
         * descriptor (model, the POM) is being built, and parent (and parent of parent...) is being asked for. Hence, this
         * method "filters" out in WHICH artifact are we interested in, but it intentionally neglects extension as
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            if (validationReportLevel == ValidationReportLevel.NONE
                    || validationReportLevel == ValidationReportLevel.INLINE) {
                return; // we were asked to not report anything OR reporting already happened inline
            }
            ConcurrentHashMap<String, PluginValidationIssues> issuesMap = pluginIssues(mavenSession.getRepositorySession());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java

        Collection<String> getChecksumAlgorithmNames();
    
        /**
         * Returns {@link ChecksumAlgorithm} for given algorithm name, or throws if algorithm not supported.
         *
         * @throws ChecksumAlgorithmServiceException if asked algorithm name is not supported.
         * @throws NullPointerException if passed in name is {@code null}.
         */
        @Nonnull
        ChecksumAlgorithm select(@Nonnull String algorithmName);
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 21 08:05:10 GMT 2023
    - 6.4K bytes
    - Viewed (0)
Back to top