- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 999 for properties (0.19 sec)
-
src/test/java/jcifs/config/PropertyConfigurationTest.java
@DisplayName("PropertyConfiguration Tests") class PropertyConfigurationTest extends BaseTest { @Mock private Properties mockProperties; private PropertyConfiguration config; @BeforeEach void setUp() throws CIFSException { Properties props = new Properties(); // Set some default test properties props.setProperty("jcifs.smb.client.username", "testuser");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CliUtils.java
@Nonnull public static Map<String, String> toMap(Properties properties) { requireNonNull(properties, "properties"); HashMap<String, String> map = new HashMap<>(); for (String key : properties.stringPropertyNames()) { map.put(key, properties.getProperty(key)); } return map; } @Nonnull public static Properties toProperties(Map<String, String> properties) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 13 18:30:29 UTC 2025 - 5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/properties/internal/SystemProperties.java
*/ public static Properties getSystemProperties() { return copyProperties(System.getProperties()); } /** * Copies the given {@link Properties} object into a new {@link Properties} object, in a thread-safe manner. * @param properties Properties to copy. * @return Copy of the given properties. */ public static Properties copyProperties(Properties properties) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/feature/FeaturesTest.java
assertFalse(Features.deployBuildPom(properties)); // Verify the map wasn't modified assertEquals(1, properties.size()); assertEquals("false", properties.get(Constants.MAVEN_DEPLOY_BUILD_POM)); } @Test void testDeployBuildPomWithOtherProperties() { // Test that other properties don't interfere Map<String, Object> properties = Map.of(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jul 04 19:42:23 UTC 2025 - 7.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/utils/CLIReportingUtils.java
} public static Properties getBuildProperties() { Properties properties = new Properties(); try (InputStream resourceAsStream = CLIReportingUtils.class.getResourceAsStream("/org/apache/maven/messages/build.properties")) { if (resourceAsStream != null) { properties.load(resourceAsStream); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Feb 10 15:02:53 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java
Object value = ee.evaluate(expr); assertEquals(expr, value); } @Test void testPOMPropertyExtractionWithMissingProjectWithDotNotation() throws Exception { String key = "m2.name"; String checkValue = "value"; Properties properties = new Properties(); properties.setProperty(key, checkValue);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java
Path rootDirectory; Path topDirectory; boolean verbose; boolean quiet; boolean showErrors = true; Properties userProperties = new Properties(); Properties systemProperties = new Properties(); MavenExecutionRequest request; CliRequest(String[] args, ClassWorld classWorld) { this.args = args; this.classWorld = classWorld;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java
} } private Properties convertToProperties(final BuildResumptionData buildResumptionData) { Properties properties = new Properties(); String value = String.join(PROPERTY_DELIMITER, buildResumptionData.getRemainingProjects()); properties.setProperty(REMAINING_PROJECTS, value); return properties; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 4.9K bytes - Viewed (0) -
tests/test_generate_unique_id_function.py
"Body_foo_post_root": { "title": "Body_foo_post_root", "required": ["item1", "item2"], "type": "object", "properties": { "item1": {"$ref": "#/components/schemas/Item"}, "item2": {"$ref": "#/components/schemas/Item"}, }, },
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 66.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaConfigurationTest.java
import java.util.Properties; import org.junit.jupiter.api.Test; import jcifs.CIFSException; import jcifs.config.PropertyConfiguration; /** * Test RDMA configuration properties */ public class RdmaConfigurationTest { @Test public void testDefaultRdmaConfiguration() throws CIFSException { Properties props = new Properties();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 5.1K bytes - Viewed (0)