- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 277 for profile1 (0.06 sec)
-
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() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 6.3K bytes - Viewed (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>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 3.6K bytes - Viewed (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) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 2.3K bytes - Viewed (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>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 3.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java
/** * Convert a model profile to a settings profile. */ @Nonnull org.apache.maven.api.settings.Profile convert(@Nonnull org.apache.maven.api.model.Profile profile); /** * Convert a settings profile to a model profile. */ @Nonnull org.apache.maven.api.model.Profile convert(@Nonnull org.apache.maven.api.settings.Profile profile);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 5.1K bytes - Viewed (0) -
docs/site-replication/run-replication-with-checksum-header.sh
split -n 10 /tmp/data/mpartobj CREATE_MPART_OUT=$(aws s3api --endpoint-url=https://localhost:9001 create-multipart-upload --bucket test-bucket --key mpartobj --checksum-algorithm SHA256 --no-verify-ssl --profile enterprise) UPLOAD_ID=$(echo "${CREATE_MPART_OUT}" | jq '.UploadId' | sed 's/"//g') PARTS=""Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 11.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileInjector.java
/** * Merges values from the specified profile into the given model. Implementations are expected to keep the profile * and model completely decoupled by injecting deep copies rather than the original objects from the profile. * * @param model The model into which to merge the values defined by the profile, must not be <code>null</code>. * @param profile The (read-only) profile whose values should be injected, may be <code>null</code>.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PropertyProfileActivator.java
@Named("property") @Singleton @Deprecated(since = "4.0.0") public class PropertyProfileActivator implements ProfileActivator { @Override public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) { Activation activation = profile.getActivation(); if (activation == null) { return false; } ActivationProperty property = activation.getProperty();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java
private static final Pattern FILTER_3 = Pattern.compile("\\."); // used for split now @Override public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) { Activation activation = profile.getActivation(); if (activation == null) { return false; } String jdk = activation.getJdk();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 6.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/settings/PomConstructionWithSettingsTest.java
ProjectBuildingRequest config = new DefaultProjectBuildingRequest(); for (org.apache.maven.settings.Profile rawProfile : settings.getProfiles()) { Profile profile = SettingsUtils.convertFromSettingsProfile(rawProfile); config.addProfile(profile); } String localRepoPath = System.getProperty( "maven.repo.local",Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 5.5K bytes - Viewed (0)