- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 251 for rcprofile (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
@Override public MavenExecutionRequest addProfile(Profile profile) { Objects.requireNonNull(profile, "profile cannot be null"); for (Profile p : getProfiles()) { if (p.getId() != null && p.getId().equals(profile.getId())) { return this; } } getProfiles().add(profile); return this; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 32.1K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin.xml
</plugin> </plugins> </build> <profiles> <profile> <id>test</id> <build> <pluginManagement> <plugins> <plugin> <groupId>profile</groupId> <artifactId>managed-duplicate</artifactId> </plugin> <plugin> <groupId>profile</groupId> <artifactId>managed-duplicate</artifactId>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/validation/DefaultSettingsValidator.java
"profiles.profile.id", null, "must be unique but found duplicate profile with id " + profile.getId()); } String prefix = "profiles.profile[" + profile.getId() + "]."; validateRepositories(problems, profile.getRepositories(), prefix + "repositories.repository");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 10.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java
/** * Add a {@link org.apache.maven.model.Profile} that has come from an external source. This may be from a custom * configuration like the MavenCLI settings.xml file, or from a custom dialog in an IDE integration like M2Eclipse. * * @param profile */ void addProfile(Profile profile); void setProfiles(List<Profile> profiles); List<Profile> getProfiles(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 7.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java
MavenProject projectToClone = getProject(f); List<Profile> activeProfilesOrig = projectToClone.getActiveProfiles(); assertEquals(1, activeProfilesOrig.size(), "Expecting 1 active profile"); MavenProject clonedProject = projectToClone.clone(); List<Profile> activeProfilesClone = clonedProject.getActiveProfiles();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 28 09:44:37 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java
// Search Execute // ============== /** * Displays the profile index page. * * @return the HTML response */ @Execute public HtmlResponse index() { return asIndexHtml(); } /** * Changes the user password. * * @param form the profile form * @return the HTML response */ @ExecuteRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 4.5K bytes - Viewed (0) -
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"))Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
} } private List<Profile> getProfiles(Model model) { ArrayList<Profile> profiles = new ArrayList<>(); for (Profile profile : model.getProfiles()) { profile = profile.clone(); profiles.add(profile); } return profiles; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultProjectBuilderTest.java
} @Override public List<Profile> getActivePomProfiles() { return List.of(); } @Override public List<Profile> getActivePomProfiles(String modelId) { return List.of(); } @Override public java.util.Map<String, List<Profile>> getActivePomProfilesByModel() { return java.util.Map.of();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 7.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
*/ @Nonnull Collection<Profile> getProfiles(); /** * List of profile ids that have been explicitly activated by the user. */ @Nonnull List<String> getActiveProfileIds(); /** * List of profile ids that have been explicitly deactivated by the user. */ @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 16.3K bytes - Viewed (0)