- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 294 for profile (0.07 sec)
-
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 Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 5.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java
* under the License. */ package org.apache.maven.model.profile; import java.io.File; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.stream.Collectors; /** * Describes the environmental context used to determine the activation status of profiles. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java
return this; } @Override public List<Profile> getProfiles() { return request.getProfiles(); } @Override public FilterModelBuildingRequest setProfiles(List<Profile> profiles) { request.setProfiles(profiles); return this; } @Override public List<String> getActiveProfileIds() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.4K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/FileProfileActivatorTest.java
@Test void testIsActiveExistsLeavesFileUnchanged() { Profile profile = newExistsProfile("file.txt"); assertEquals("file.txt", profile.getActivation().getFile().getExists()); assertActivation(true, profile, context); assertEquals("file.txt", profile.getActivation().getFile().getExists()); } private Profile newExistsProfile(String filePath) { ActivationFile activationFile =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.8K bytes - Viewed (0) -
ci/official/pycpp.sh
if [[ `uname -s | grep -P '^MSYS_NT'` ]]; then PROFILE_JSON_PATH=$(replace_drive_letter_with_c "$TFCI_OUTPUT_DIR") PROFILE_JSON_PATH="$PROFILE_JSON_PATH/profile.json.gz" else PROFILE_JSON_PATH="$TFCI_OUTPUT_DIR/profile.json.gz" fi # TODO(b/361369076) Remove the following block after TF NumPy 1 is dropped # Move hermetic requirement lock files for NumPy 1 to the root
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 18:48:35 UTC 2024 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
* Gets the assembled model with inheritance, interpolation and profile injection. * * @return The assembled model, never {@code null}. */ @Nonnull Model getEffectiveModel(); /** * Gets the profiles that were active during model building. * * @return The active profiles of the model or an empty list if the model has no active profiles. */ @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 3.2K bytes - Viewed (0) -
apache-maven/pom.xml
</execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>versionlessMavenDist</id> <build> <finalName>${project.artifactId}</finalName> </build> </profile> </profiles>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 13:41:46 UTC 2024 - 13.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
public ModelBuilderRequestBuilder source(ModelSource source) { this.source = source; return this; } public ModelBuilderRequestBuilder profiles(List<Profile> profiles) { this.profiles = profiles; return this; } public ModelBuilderRequestBuilder activeProfileIds(List<String> activeProfileIds) { this.activeProfileIds = activeProfileIds;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 13.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java
private Model fileModel; 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<>();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml
<phase>test</phase> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>test</id> <build> <pluginManagement> <plugins> <plugin> <groupId>profile</groupId> <artifactId>managed-plugin</artifactId> <executions> <execution>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0)