- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for getMissing (0.23 seconds)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/FileProfileActivator.java
boolean missing; if (StringUtils.isNotEmpty(file.getExists())) { path = file.getExists(); missing = false; } else if (StringUtils.isNotEmpty(file.getMissing())) { path = file.getMissing(); missing = true; } else { return false; } try { path = profileActivationFilePathInterpolator.interpolate(path, context);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 4.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/ProfileActivationFilePathInterpolator.java
import org.codehaus.plexus.interpolation.MapBasedValueSource; import org.codehaus.plexus.interpolation.RegexBasedInterpolator; /** * Finds an absolute path for {@link ActivationFile#getExists()} or {@link ActivationFile#getMissing()} * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named @Singleton @Deprecated public class ProfileActivationFilePathInterpolator { @InjectCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.9K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java
p.getActivation().getFile().getExists(), clone.getActivation().getFile().getExists()); assertEquals( p.getActivation().getFile().getMissing(), clone.getActivation().getFile().getMissing()); assertEquals( p.getActivation().getProperty().getName(), clone.getActivation().getProperty().getName()); assertEquals(
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 6.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java
if (profileFile != null) { ActivationFile file = new ActivationFile(); file.setExists(profileFile.getExists()); file.setMissing(profileFile.getMissing()); activation.setFile(file); } profile.setActivation(activation); } profile.setProperties(profileXmlProfile.getProperties());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/FileProfileActivator.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.6K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
if (activationFile != null) { String org, val; // Missing org = activationFile.getMissing(); val = interpolate(org); if (org != val) { activationFile.setMissing(val); } // Exists org = activationFile.getExists(); val = interpolate(org);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 43.1K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
new Interpolation(fa, s -> profileActivationFilePathInterpolator.interpolate(s, context)); nt.performFor(fa.getExists(), "exists", fa::setExists); nt.performFor(fa.getMissing(), "missing", fa::setMissing); }); a.map(Activation::getOs).ifPresent(oa -> { Interpolation nt = new Interpolation(oa, interpolator::interpolate);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 03 15:06:05 GMT 2025 - 66.8K bytes - Click Count (0)