Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 392 for para (0.1 sec)

  1. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

         *
         * @param plugin The plugin for which to create a realm, must not be {@code null}.
         * @param parent The parent realm for the new realm, may be {@code null}.
         * @param parentImports The packages/types to import from the parent realm, may be {@code null}.
         * @param foreignImports The packages/types to import from foreign realms, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java

         * collected from this method in combination with a custom cache implementation to dispose unused records from the
         * cache.
         *
         * @param project The project that employs the plugin realm, must not be {@code null}.
         * @param record The cache record being used for the project, must not be {@code null}.
         */
        void register(MavenProject project, Key cacheKey, CacheRecord record);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:34:19 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. maven-api-impl/pom.xml

                  <params>
                    <param>forcedIOModelVersion=1.2.0</param>
                    <param>packageModelV3=org.apache.maven.settings</param>
                    <param>packageModelV4=org.apache.maven.api.settings</param>
                    <param>packageToolV4=org.apache.maven.settings.v4</param>
                    <param>locationTracking=true</param>
                    <param>generateLocationClasses=true</param>
                  </params>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java

         *
         * @param message The detail message, may be {@code null}.
         * @param groupId The group id of the unresolvable model, may be {@code null}.
         * @param artifactId The artifact id of the unresolvable model, may be {@code null}.
         * @param version The version of the unresolvable model, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/Log.java

         *
         * @param content
         */
        void debug(CharSequence content);
    
        /**
         * Send a message (and accompanying exception) to the user in the <b>debug</b> error level.<br>
         * The error's stacktrace will be output when this error level is enabled.
         *
         * @param content
         * @param error
         */
        void debug(CharSequence content, Throwable error);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java

        /**
         *
         * @param session
         * @param type
         * @param requirements
         * @return the selected {@link Toolchain}s
         * @throws ToolchainManagerException if an exception occurs
         */
        @Nonnull
        List<Toolchain> getToolchains(@Nonnull Session session, String type, Map<String, String> requirements);
    
        /**
         *
         * @param session
         * @param type
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/ModelValidator.java

         *
         * @param activeExternalProfiles the active profiles coming from external sources (settings.xml), must not be {@code null}
         * @param model The model to validate, must not be {@code null}.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoExecutionException.java

         * these messages are used to improve the message written at the end of Maven build.
         *
         * @param source
         * @param shortMessage
         * @param longMessage
         */
        public MojoExecutionException(Object source, String shortMessage, String longMessage) {
            super(shortMessage);
            this.source = source;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/Result.java

     *
     * @param <T> the model type
     */
    public class Result<T> {
    
        /**
         * Success without warnings
         *
         * @param model
         */
        public static <T> Result<T> success(T model) {
            return success(model, Collections.emptyList());
        }
    
        /**
         * Success with warnings
         *
         * @param model
         * @param problems
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java

        }
    
        /**
         * Prompts the user for a string using a list of possible values and a default reply.
         *
         * @param message the message to display
         * @param possibleValues the list of possible values
         * @param defaultReply the default reply value
         * @return the string entered by the user
         * @throws PrompterException if an exception occurs
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top