- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 251 for rcprofile (0.06 seconds)
-
compat/maven-model-builder/src/test/resources/poms/factory/simple.xml
</plugin> </plugins> </build> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </profile> <profile> <id>file</id> <activation> <file>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java
@Override public void injectProfile( Model model, Profile profile, ModelBuildingRequest request, ModelProblemCollector problems) { if (profile != null) { merger.mergeModelBase(model, profile); if (profile.getBuild() != null) { if (model.getBuild() == null) { model.setBuild(new Build());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java
private Model effectiveModel; private List<String> modelIds; private Map<String, Model> rawModels; private Map<String, List<Profile>> activePomProfiles; private List<Profile> activeExternalProfiles; private List<ModelProblem> problems; DefaultModelBuildingResult() { modelIds = new ArrayList<>(); rawModels = new HashMap<>();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) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivatorTest.java
@Test void testName() { Profile profile = newProfile(ActivationOS.newBuilder().name("windows")); assertActivation(false, profile, newContext(null, newProperties("linux", "6.5.0-1014-aws", "amd64"))); assertActivation(true, profile, newContext(null, newProperties("windows", "6.5.0-1014-aws", "aarch64"))); } @Test void testNegatedName() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 6.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/profile/index.jsp
<i class="fa fa-arrow-circle-left" aria-hidden="true"></i> <la:message key="labels.profile.back" /> </la:link> <button type="submit" name="changePassword" class="btn btn-success" value="<la:message key="labels.profile.update"/>"> <i class="fa fa-pencil-alt" aria-hidden="true"></i> <la:message key="labels.profile.update" /> </button> </div> </la:form> </div> </div>
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 3.6K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java
assertActivation(false, profile, newContext(null, newProperties("other", "value"))); } @Test void testWithNegatedNameOnlyUserProperty() throws Exception { Profile profile = newProfile("!prop", null); assertActivation(false, profile, newContext(newProperties("prop", "value"), null));Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 5.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java
/** * @param modelProfile * @return a profile */ public static Profile convertToSettingsProfile(org.apache.maven.model.Profile modelProfile) { return new Profile(SettingsUtilsV4.convertToSettingsProfile(modelProfile.getDelegate())); } /** * @param settingsProfile * @return a profile */ public static org.apache.maven.model.Profile convertFromSettingsProfile(Profile settingsProfile) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/profile/index.jsp
<em class="fa fa-arrow-circle-left"> <la:message key="labels.profile.back" /> </la:link> <button type="submit" name="changePassword" class="btn btn-success" value="<la:message key="labels.profile.update"/>"> <em class="fa fa-pencil-alt"> <la:message key="labels.profile.update" /> </button> </div> </la:form> </div> </div> </div>
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Jan 18 12:09:07 GMT 2025 - 3.6K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivator.java
*/ 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) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/DefaultProfileSelectorTest.java
/** * Tests {@link DefaultProfileSelector}. */ @Deprecated public class DefaultProfileSelectorTest { private Profile newProfile(String id) { Activation activation = new Activation(); Profile profile = new Profile(); profile.setId(id); profile.setActivation(activation); return profile; } @Test void testThrowingActivator() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 2.9K bytes - Click Count (0)