- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 999 for properties (0.31 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/Slf4jConfigurationFactory.java
InputStream is = resource.openStream(); final Properties properties = new Properties(); if (is != null) { try (InputStream in = is) { properties.load(in); } } String impl = properties.getProperty(slf4jBinding); if (impl != null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 3.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionDataRepositoryTest.java
@Test void resumeFromPropertyGetsApplied() { MavenExecutionRequest request = new DefaultMavenExecutionRequest(); Properties properties = new Properties(); properties.setProperty("remainingProjects", ":module-a"); repository.applyResumptionProperties(request, properties); assertEquals(singleton(":module-a"), request.getProjectActivation().getOptionalActiveProjectSelectors()); } @TestRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 4.2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultType.java
Map<String, String> properties = new HashMap<>(); properties.put(ArtifactProperties.TYPE, id); properties.put(ArtifactProperties.LANGUAGE, language.id()); properties.put(MavenArtifactProperties.INCLUDES_DEPENDENCIES, Boolean.toString(includesDependencies)); properties.put( MavenArtifactProperties.CONSTITUTES_BUILD_PATH,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
} return def; } /** * Get the local host address based on the provided properties. * * @param props the properties to use for configuration * @return the local host InetAddress */ public static InetAddress getLocalHost(final Properties props) { final String addr = props.getProperty("jcifs.smb.client.laddr"); if (addr != null) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
* ensures that the properties are always up-to-date. * * <p>Key Features: * <ul> * <li>Automatically reloads properties if the file is modified.</li> * <li>Supports custom check intervals for file modification checks.</li> * <li>Provides synchronized methods for loading and storing properties.</li> * <li>Extends {@link Properties} and overrides its methods to work with dynamic properties.</li> * </ul> * * <p>Usage: * <pre>
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
/** * Set the default properties of the static Properties used by <code>Config</code>. This permits * a different Properties object/file to be used as the source of properties for * use by the jCIFS library. The Properties must be set <i>before jCIFS * classes are accessed</i> as most jCIFS classes load properties statically once. * Using this method will also override properties loadedRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesLoaderTest.java
Files.writeString(mavenUserProps, "${includes} = ?\"${user.home}/maven.properties\"\n"); Path userDirectory = fs.getPath("/user"); Files.createDirectories(userDirectory); Path propsPath = userDirectory.resolve("maven.properties"); Files.writeString(propsPath, "${includes} = default.properties,?env-${env.envName}.properties\n");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Dec 01 19:41:22 UTC 2024 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/SmbConnectionTest.java
*/ @Test @DisplayName("getBatchLimit returns correct values for different SMB commands") public void testBatchLimitForDifferentCommands() throws CIFSException { Properties props = new Properties(); props.setProperty("jcifs.smb.client.useBatching", "true"); props.setProperty("jcifs.smb.client.useUnicode", "true"); PropertyConfiguration config = new PropertyConfiguration(props);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Config.java
* where the property value is defined. */ enum Source { /** * Maven system properties. These properties are evaluated very early during the boot process, * typically set by Maven itself and flagged as readOnly=true or by users via maven-system.properties files. * System properties are initialized before the build starts and are available throughout the entire MavenRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 4.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
Object value = ee.evaluate("${" + key + "}"); assertEquals(checkValue, value); } @Test public void testValueExtractionFromSystemPropertiesWithMissingProject() throws Exception { String sysprop = "PPEET_sysprop1"; Properties executionProperties = new Properties();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.3K bytes - Viewed (0)