- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for setProperties (0.17 sec)
-
src/main/java/jcifs/smb1/Config.java
/** * Set the properties to be used for configuration. * * @param prp the properties to set */ public static void setProperties(final Properties prp) { Config.prp = new Properties(prp); try { Config.prp.putAll(System.getProperties()); } catch (final SecurityException se) { if (LogStream.level > 1) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/http/HandlerTest.java
originalSystemProperties = (Properties) System.getProperties().clone(); // Reset static state of the Handler class before each test for isolation resetHandlerState(); handler = new Handler(mockCifsContext); } @AfterEach void tearDown() throws Exception { // Restore system properties and clean up static state System.setProperties(originalSystemProperties); resetHandlerState();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
return getProperties().elements(); } @Override public Set<java.util.Map.Entry<Object, Object>> entrySet() { return getProperties().entrySet(); } @Override public boolean equals(final Object o) { return getProperties().equals(o); } @Override public Object get(final Object key) { return getProperties().get(key); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
* * @param cmdList the command list to add properties to */ protected void addFessConfigProperties(final List<String> cmdList) { System.getProperties() .keySet() .stream() .filter(k -> k != null && k.toString().startsWith(Constants.FESS_CONFIG_PREFIX))
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
new BaseContext(new PropertyConfiguration(System.getProperties())), "domain", "user", "password"); when(mockCifsContext.getCredentials()).thenReturn(creds); when(mockCifsContext.getConfig()).thenReturn(new PropertyConfiguration(System.getProperties())); when(mockCifsContext.getNameServiceClient()).thenReturn(mockNameServiceClient);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
} } else { Properties props = new Properties(); EnvironmentUtils.addEnvVars(props); props.putAll(System.getProperties()); request.setSystemProperties(props); } return request; } @SuppressWarnings("unchecked") private List<ArtifactRepository> normalizeToArtifactRepositories(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
if (logger.isDebugEnabled()) { try { ManagementFactory.getRuntimeMXBean().getInputArguments().stream().forEach(s -> logger.debug("Parameter: {}", s)); System.getProperties().entrySet().stream().forEach(e -> logger.debug("Property: {}={}", e.getKey(), e.getValue())); System.getenv().entrySet().forEach(e -> logger.debug("Env: {}={}", e.getKey(), e.getValue()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
final Model model, final File projectDir, final ProjectBuilderConfiguration config) { String timestampFormat = DEFAULT_BUILD_TIMESTAMP_FORMAT; Properties modelProperties = model.getProperties(); if (modelProperties != null) { timestampFormat = modelProperties.getProperty(BUILD_TIMESTAMP_FORMAT_PROPERTY, timestampFormat); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceUtil.java
* * @param path * The path to the properties file. Must not be {@literal null} or empty string. * @return The properties file. */ public static Properties getProperties(final String path) { assertArgumentNotEmpty("path", path); final Properties props = new Properties(); final InputStream is = getResourceAsStream(path); try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 14.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
* * @param project the project for which to get the properties * * @see #setProperty(Project, String, String) */ @Nonnull Map<String, String> getProperties(@Nonnull Project project); /** * Set a given project property. Properties set through this method are only valid * for the current build session and do not modify the underlying project model. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:29:13 UTC 2025 - 12K bytes - Viewed (0)