Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 274 for unused (0.19 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

        }
    
        /**
         * Set username used to access the repository.
         *
         * @param userName the username used to access repository
         */
        public void setUsername(final String userName) {
            this.username = userName;
        }
    
        /**
         * Get the passphrase of the private key file. The passphrase is used only when host/protocol supports
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

                    for (Throwable cause = e.getCause();
                            cause != null && cause != cause.getCause();
                            cause = cause.getCause()) {
                        logger.error("Caused by: {}", cause.getMessage());
                    }
                }
            }
        }
    
        public static String formatTimestamp(long timestamp) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

     * under the License.
     */
    package org.apache.maven.model.building;
    
    import org.apache.maven.api.model.DependencyManagement;
    import org.apache.maven.api.model.Model;
    
    /**
     * Describes a tag used by the model builder to access a {@link ModelCache}. This interface basically aggregates a name
     * and a class to provide some type safety when working with the otherwise untyped cache.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 13 13:02:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

    /**
     * Dependency scope.
     * This represents at which time the dependency will be used, for example, at compile time only,
     * at run time or at test time.  For a given dependency, the scope is directly derived from the
     * {@link org.apache.maven.api.model.Dependency#getScope()} and will be used when using {@link PathScope}
     * and the {@link org.apache.maven.api.services.DependencyResolver}.
     *
     * @since 4.0.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

     * {@link org.apache.maven.model.building.ModelBuilder} will add any relevant repositories to the model resolver. In
     * other words, the model resolver is stateful and should not be reused across multiple model building requests.
     *
     */
    public interface ModelResolver {
    
        /**
         * Tries to resolve the POM for the specified coordinates.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProblem.java

         * @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown.
         * @param exception The exception that caused this problem, may be {@code null}.
         */
        // mkleint: does this need to be public?
        public DefaultModelProblem(
                String message,
                Severity severity,
                Version version,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/TransformerContextBuilder.java

        /**
         * This method is used to initialize the TransformerContext
         *
         * @param request the modelBuildingRequest
         * @param problems the problemCollector
         * @return the mutable transformerContext
         */
        TransformerContext initialize(ModelBuildingRequest request, ModelProblemCollector problems);
    
        /**
         * The immutable transformerContext, can be used after the buildplan is finished.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerContextBuilder.java

        /**
         * This method is used to initialize the TransformerContext
         *
         * @param request the modelBuildingRequest
         * @param problems the problemCollector
         * @return the mutable transformerContext
         */
        ModelTransformerContext initialize(ModelBuilderRequest request, ModelProblemCollector problems);
    
        /**
         * The immutable transformerContext, can be used after the buildplan is finished.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelValidator.java

         *
         * @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}.
         * @param problems The container used to collect problems that were encountered, must not be {@code null}.
         */
        default void validateFileModel(Model model, ModelBuilderRequest request, ModelProblemCollector problems) {
            // do nothing
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingEvent.java

         * @return The model building request being processed, never {@code null}.
         */
        ModelBuildingRequest getRequest();
    
        /**
         * Gets the container used to collect problems that were encountered while processing the event.
         *
         * @return The container used to collect problems that were encountered, never {@code null}.
         */
        ModelProblemCollector getProblems();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top