Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getModelCache (0.17 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

            request.setModelBuildingListener(modelBuildingListener);
    
            return this;
        }
    
        @Override
        public ModelCache getModelCache() {
            return request.getModelCache();
        }
    
        @Override
        public FilterModelBuildingRequest setModelCache(ModelCache modelCache) {
            request.setModelCache(modelCache);
    
            return this;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource2.java

     * construction of MavenProject instances without the need to have parent POM(s) available from local or remote
     * repositories.
     * <p>
     * ModelSource2 instances are cached in {@link ModelBuildingRequest#getModelCache()}. Implementations must guarantee
     * that the connection to the backing store remains active until request's {@link ModelCache} is discarded or flushed.
     *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                throws ModelBuildingException {
            ModelSource modelSource = request.getModelSource();
            org.apache.maven.api.model.Model model = cache(
                    request.getModelCache(),
                    modelSource,
                    ModelCacheTag.FILE,
                    () -> doReadFileModel(modelSource, request, problems));
    
            if (modelSource instanceof FileModelSource) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the model cache to use for reuse of previously built models.
         *
         * @return The model cache or {@code null} if not set.
         */
        ModelCache getModelCache();
    
        /**
         * Sets the model cache to use for reuse of previously built models. This is an optional component that serves
         * performance optimizations.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top