- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 32 for systemProperties (0.42 sec)
-
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
FileUtil.writeBytes(propFile.getAbsolutePath(), new byte[0]); propFile.deleteOnExit(); systemProperties = new DynamicProperties(propFile); ComponentUtil.register(systemProperties, "systemProperties"); pathMappingHelper = new PathMappingHelper() { @Override public void setPathMappingList(String sessionId,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java
import javax.inject.Named; import javax.inject.Singleton; import java.io.File; import java.io.IOException; import org.apache.maven.execution.MavenExecutionRequest; import org.apache.maven.properties.internal.SystemProperties; import org.apache.maven.settings.building.DefaultSettingsBuildingRequest; import org.apache.maven.settings.building.SettingsBuilder; import org.apache.maven.settings.building.SettingsBuildingException;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
// ========= /** System properties for configuration management. */ @Resource protected DynamicProperties systemProperties; // =================================================================================== // Hook
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
// Get existing component and update it instead of registering new one DynamicProperties existingProps = SingletonLaContainerFactory.getContainer().getComponent("systemProperties"); existingProps.setProperty("ldap.security.principal", "******@****.***"); assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(null));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper(); final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); if (StringUtil.isNotBlank(options.propertiesPath)) { systemProperties.reload(options.propertiesPath); } else { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
// ========= /** System properties for dynamic configuration management */ @Resource protected DynamicProperties systemProperties; // =================================================================================== // // GET /api/admin/general /** * Returns the current general system settings.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java
private Properties properties; @Override public void contextualize(Context context) throws ContextException { properties = (Properties) context.get("SystemProperties"); } @Override protected boolean canDetectActivation(Profile profile) { return profile.getActivation() != null && profile.getActivation().getProperty() != null; } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
*/ protected Saml2Settings getSettings() { final Map<String, Object> params = new HashMap<>(defaultSettings); final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); systemProperties.entrySet().stream().forEach(e -> { final String key = e.getKey().toString(); if (!key.startsWith(SAML_PREFIX)) { return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (1) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
import org.apache.maven.project.ProjectBuildingException; import org.apache.maven.project.ProjectBuildingRequest; import org.apache.maven.properties.internal.EnvironmentUtils; import org.apache.maven.properties.internal.SystemProperties; import org.apache.maven.repository.internal.MavenWorkspaceReader; import org.apache.maven.repository.legacy.metadata.DefaultMetadataResolutionRequest;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 30.4K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
* These include both Java system properties and Maven-specific system properties. * * @return an unmodifiable map of system properties */ @Nonnull Map<String, String> systemProperties(); /** * Returns the top-level directory of the Maven invocation. * This is typically the directory containing the POM file being executed. * * @return the top-level directory path
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 6.7K bytes - Viewed (0)