- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 377 for profiler (0.06 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
} // Process profile dependencies boolean profileDependencyChanges = root.child(PROFILES).stream() .flatMap(profiles -> profiles.children(PROFILE)) .map(profile -> profile.child(DEPENDENCIES) .map(deps -> removeDependencyInferenceFromSection(context, deps, pomMap, "profile dependencies"))Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 27.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
} /** * Mark a profile as required and activated. * @param id The identifier of the profile. */ public void activateRequiredProfile(String id) { this.activations.put(id, ActivationSettings.activated()); } /** * Mark a profile as optional and activated. * @param id The identifier of the profile. */ public void activateOptionalProfile(String id) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 5.6K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java
} @Override public List<Profile> getProfiles() { if (profiles == null) { profiles = new ArrayList<>(); } return profiles; } @Override public DefaultModelBuildingRequest setProfiles(List<Profile> profiles) { if (profiles != null) { this.profiles = new ArrayList<>(profiles); } else { this.profiles = null;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 9.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileSelector.java
boolean activatedPomProfileNotByDefault = false; for (Profile profile : profiles) { if (!deactivatedIds.contains(profile.getId())) { if (activatedIds.contains(profile.getId()) || isActive(profile, context, problems)) { activeProfiles.add(profile); if (Profile.SOURCE_POM.equals(profile.getSource())) { activatedPomProfileNotByDefault = true;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 4.6K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java
* not refer to a known model. */ List<Profile> getActivePomProfiles(String modelId); /** * Gets the external profiles that were active during model building. External profiles are those that were * contributed by {@link ModelBuildingRequest#getProfiles()}. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 4.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
@Nonnull List<Profile> getActivePomProfiles(String modelId); /** * Gets a map of all active POM profiles organized by model ID. * The map keys are model IDs (groupId:artifactId:version) and values are lists of active profiles for each model. * * @return A map of model IDs to their active profiles, never {@code null}. * @since 4.0.0 */ @NonnullCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 4.2K bytes - Click Count (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
if (getProfiles() != null) { for (Profile profile : getProfiles()) { profileMap.put(profile.getId(), profile); } } } return profileMap; } public void setModelEncoding(String modelEncoding) { update(getDelegate().with().modelEncoding(modelEncoding).build());
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun May 18 09:15:56 GMT 2025 - 33.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java
@Override public void setProfiles(List<Profile> profiles) { if (profiles != null) { this.profiles = new ArrayList<>(profiles); } else { this.profiles.clear(); } } @Override public void addProfile(Profile profile) { profiles.add(profile); } @Override public List<Profile> getProfiles() { return profiles; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 10:13:56 GMT 2025 - 9.9K bytes - Click Count (0) -
compat/maven-model-builder/src/test/resources/poms/factory/complex.xml
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivator.java
* under the License. */ package org.apache.maven.profiles.activation; import org.apache.maven.model.Profile; /** * ProfileActivator */ @Deprecated public interface ProfileActivator { String ROLE = ProfileActivator.class.getName(); boolean canDetermineActivation(Profile profile); boolean isActive(Profile profile) throws ProfileActivationException;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.1K bytes - Click Count (0)