- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 47 for getSystemProperties (0.12 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
*/ public static List<Map<String, String>> getFessPropItems(final FessConfig fessConfig) { final List<Map<String, String>> itemList = new ArrayList<>(); ComponentUtil.getSystemProperties().entrySet().stream().forEach(e -> { final String k = e.getKey().toString(); final String value; if (isMaskedValue(k)) { value = MASKED_VALUE;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
} @Test public void test_getExcludedUrlList() { final AtomicInteger errorCount = new AtomicInteger(0); final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); final FailureUrlCB cb = new FailureUrlCB(); ComponentUtil.register(new FailureUrlBhv() { @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 35.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/ProfileActivationFilePathInterpolator.java
interpolator.addValueSource(new MapBasedValueSource(context.getUserProperties())); interpolator.addValueSource(new MapBasedValueSource(context.getSystemProperties())); String absolutePath = interpolator.interpolate(path, ""); return pathTranslator.alignToBaseDirectory(absolutePath, basedir); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PropertyProfileActivator.java
return false; } String sysValue = context.getUserProperties().get(name); if (sysValue == null) { sysValue = context.getSystemProperties().get(name); } String propValue = property.getValue(); if (StringUtils.isNotEmpty(propValue)) { boolean reverseValue = false; if (propValue.startsWith("!")) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.8K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
cli.cli(request); executionRequest = cli.populateRequest(request); assertNull(executionRequest.getLocalRepositoryPath()); // System-properties override default request.getSystemProperties().setProperty(Constants.MAVEN_REPO_LOCAL, "." + File.separatorChar + "custom1"); executionRequest = cli.populateRequest(request); assertNotNull(executionRequest.getLocalRepositoryPath());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 30.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
return asStream(id).contentTypeOctetStream().stream(out -> { try (final ByteArrayOutputStream baos = new ByteArrayOutputStream()) { ComponentUtil.getSystemProperties().store(baos, id); try (final InputStream in = new ByteArrayInputStream(baos.toByteArray())) { out.write(in); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/LogNotificationAppender.java
throwableStr // ); helper.offer(notificationEvent); } private Level getEffectiveMinLevel() { try { final String levelStr = ComponentUtil.getSystemProperties().getProperty("fess.log.notification.level"); if (levelStr != null) { return Level.toLevel(levelStr, minLevel); } } catch (final Exception e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 6K bytes - Click Count (0) -
build-tools-internal/src/main/resources/forbidden/jdk-signatures.txt
java.lang.System#setProperties(java.util.Properties) java.lang.System#setProperty(java.lang.String,java.lang.String) java.lang.System#clearProperty(java.lang.String) java.lang.System#getProperties() @ Use BootstrapInfo.getSystemProperties for a read-only view @defaultMessage Avoid unchecked warnings by using Collections#empty(List|Map|Set) methods java.util.Collections#EMPTY_LIST java.util.Collections#EMPTY_MAP java.util.Collections#EMPTY_SET
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 4.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
finalConfigProperties.putAll(configProps); sessionBuilder.setUserProperties(request.getUserProperties()); sessionBuilder.setSystemProperties(request.getSystemProperties()); sessionBuilder.setConfigProperties(finalConfigProperties); return sessionBuilder; } private Path resolve(String string) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Mar 19 13:42:58 GMT 2026 - 25.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 6.6K bytes - Click Count (0)