- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 856 for PROPERTIES (0.05 sec)
-
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
Files.createDirectories(mvn); Files.writeString( mvn.resolve("maven.properties"), "${includes} = env-${envName}.properties\nfro = ${bar}z\n" + "bar = chti${java.version}\n"); Files.writeString(mvn.resolve("env-test.properties"), "\n"); // Arrange CliRequest request = new CliRequest( new String[] { "-DenvName=test",
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/PropertiesUtil.java
import java.io.Writer; import java.net.URL; import java.nio.charset.Charset; import java.util.Properties; import org.codelibs.core.exception.IORuntimeException; import org.codelibs.core.net.URLUtil; /** * {@link Properties}用のユーティリティクラスです。 * * @author higa */ public abstract class PropertiesUtil { /** * {@link Properties#load(InputStream)}の例外処理をラップします。 * <p> * 入力ストリームはクローズされません。 * </p>
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
Properties prop1 = new Properties(); prop1.setProperty("jcifs.smb.client.minVersion", "SMB302"); PropertyConfiguration p1 = new PropertyConfiguration(prop1); assertEquals(DialectVersion.SMB302, p1.getMinimumVersion()); assertEquals(DialectVersion.SMB302, p1.getMaximumVersion()); Properties prop2 = new Properties();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/factory/complex.xml
<modelVersion>4.0.0</modelVersion> <groupId>test</groupId> <artifactId>test</artifactId> <version>0.1-SNAPSHOT</version> <packaging>pom</packaging> <properties> <my.filter.value>hello</my.filter.value> </properties> <profiles> <profile> <id>two-conditions</id> <activation> <file> <exists>simple.xml</exists>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
build-logic/build.gradle.kts
if (jvmArgs.size > 1) { throw GradleException("gradle.properties and build-logic/gradle.properties have different org.gradle.jvmargs " + "which may cause two daemons to be spawned on CI and in IDEA. " + "Use the same org.gradle.jvmargs for both builds.") } } } fun readProperties(propertiesFile: File) = java.util.Properties().apply { propertiesFile.inputStream().use { fis -> load(fis) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jan 24 02:52:56 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
return; } FileChannel channel = null; FileLock lock = null; try { Properties props = new Properties(); channel = new RandomAccessFile(touchfile, "rw").getChannel(); lock = channel.lock(); if (touchfile.canRead()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/ProjectBuilderConfiguration.java
ProfileManager getGlobalProfileManager(); Properties getUserProperties(); Properties getExecutionProperties(); ProjectBuilderConfiguration setGlobalProfileManager(ProfileManager globalProfileManager); ProjectBuilderConfiguration setLocalRepository(ArtifactRepository localRepository); ProjectBuilderConfiguration setUserProperties(Properties userProperties);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java
/** * Gets the system properties to use for interpolation and profile activation. The system properties are collected * from the runtime environment like {@link System#getProperties()} and environment variables. * * @return The execution properties, never {@code null}. */ Map<String, String> getSystemProperties(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0)