Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isTwoPhaseBuilding (0.12 sec)

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

            request.setProcessPlugins(processPlugins);
    
            return this;
        }
    
        @Override
        public boolean isTwoPhaseBuilding() {
            return request.isTwoPhaseBuilding();
        }
    
        @Override
        public FilterModelBuildingRequest setTwoPhaseBuilding(boolean twoPhaseBuilding) {
            request.setTwoPhaseBuilding(twoPhaseBuilding);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuilder.java

        /**
         * Builds the effective model by completing the specified interim result which was produced by a previous call to
         * {@link #build(ModelBuildingRequest)} with {@link ModelBuildingRequest#isTwoPhaseBuilding()} being {@code true}.
         * The model building request passed to this method must be the same as the one used for the first phase of the
         * model building.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         *
         * @return {@code true} if two-phase building is enabled, {@code false} if the model should be built in a single
         *         step.
         */
        boolean isTwoPhaseBuilding();
    
        /**
         * Enables/disables two-phase building. If enabled, the initial invocation of the model builder will only produce an
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                result.setActivePomProfiles(modelId, currentData.getActiveProfiles());
                result.setRawModel(modelId, currentData.getRawModel());
            }
    
            if (!request.isTwoPhaseBuilding()) {
                build(request, result, importIds);
            }
    
            return result;
        }
    
        @FunctionalInterface
        private interface InterpolateString {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:08 UTC 2025
    - 55.3K bytes
    - Viewed (0)
Back to top