- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 136 for property (0.28 sec)
-
compat/maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-property-with-project-expressions.xml
<packaging>pom</packaging> <profiles> <profile> <id>property-name-project-version</id> <activation> <property> <name>${project.version}</name> </property> </activation> </profile> <profile> <id>property-value-project-version</id> <activation> <property> <name>project.version</name> <value>${project.version}</value>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/resources/crawler_opensearch.xml
<property name="queueIndex">"fess_crawler.queue"</property> <property name="queueShards">5</property> <property name="queueReplicas">1</property> <property name="dataIndex">"fess_crawler.data"</property> <property name="dataShards">5</property> <property name="dataReplicas">1</property> <property name="filterIndex">"fess_crawler.filter"</property> <property name="filterShards">5</property>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
/** * Searches for the property with the specified key in this property list. * * @param key the property key. * @return the value in this property list with the specified key value. */ public String getProperty(String key) { return this.get(key); } /** * Searches for the property with the specified key in this property list. If the key is not found in this property
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38.2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/factory/complex.xml
<activation> <file> <exists>simple.xml</exists> </file> <property> <name>myproperty</name> <value>test</value> </property> </activation> <properties> <profile.file>activated-1</profile.file> </properties> </profile>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PropertyProfileActivator.java
if (activation == null) { return false; } ActivationProperty property = activation.getProperty(); if (property == null) { return false; } String name = property.getName(); boolean reverseName = false; if (name != null && name.startsWith("!")) { reverseName = true;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
deps.xml
<?xml version="1.0" encoding="UTF-8"?> <project name="deps" basedir="."> <property name="target.dir" value="${basedir}/target/deps" /> <property name="webinf.dir" value="${basedir}/src/main/webapp/WEB-INF" /> <property name="crawler.dir" value="${basedir}/src/main/webapp/WEB-INF/env/crawler" /> <property name="suggest.dir" value="${basedir}/src/main/webapp/WEB-INF/env/suggest" /> <property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 04:37:19 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-file-with-allowed-expressions.xml
<profile> <id>dynamic-property-available</id> <activation> <property> <name>${activationProperty}</name> </property> </activation> </profile> <profile> <id>matches-another-property</id> <activation> <property> <name>foo</name> <value>${bar}</value> </property> </activation> </profile>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/DefaultModelVersionProcessor.java
private static final String REVISION_PROPERTY = "revision"; @Override public boolean isValidProperty(String property) { return REVISION_PROPERTY.equals(property) || CHANGELIST_PROPERTY.equals(property) || SHA1_PROPERTY.equals(property); } @Override public void overwriteModelProperties(Properties modelProperties, ModelBuildingRequest request) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
plugin.xml
<?xml version="1.0" encoding="UTF-8"?> <project name="plugin" basedir="."> <property name="plugins.dir" value="${basedir}/plugins" /> <property name="target.dir" value="${basedir}/target/plugins" /> <!-- Maven Repository --> <property name="maven.snapshot.repo.url" value="https://oss.sonatype.org/content/repositories/snapshots" /> <property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 25 23:33:43 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java
final BeanProperty<Object> property = propertyMap.get(Roles.camelizeName(parser.getName())); if (property != null) { property.set(bean, parse(parser, property.getType())); parser.nextTag(); } else { throw new XmlPullParserException("Unknown bean property: " + parser.getName(), parser, null); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 15.3K bytes - Viewed (0)