- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 223 for SetProperty (0.09 sec)
-
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
// ignore } } final String httpAddress = SystemUtil.getSearchEngineHttpAddress(); if (StringUtil.isNotBlank(httpAddress)) { System.setProperty(FesenClient.HTTP_ADDRESS, httpAddress); } TimeoutTask systemMonitorTask = null; int exitCode; try { SingletonLaContainerFactory.setConfigPath("app.xml");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 10K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java
Profile p = Profile.newBuilder().activation(a).build(); return p; } private Properties newProperties(String javaVersion) { Properties props = new Properties(); props.setProperty("java.version", javaVersion); return props; } @Test void testNullSafe() throws Exception { Profile p = Profile.newInstance();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
val randomRegex = "\"random\"\\s+:\\s+\"([^\"]+)\"".toRegex() fun register() { // Enable JUL logging for SSL events, must be activated early or via -D option. System.setProperty("javax.net.debug", "") logger = Logger.getLogger("javax.net.ssl") .apply { level = Level.FINEST useParentHandlers = false } } } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
form.logLevel = ComponentUtil.getSystemHelper().getLogLevel().toUpperCase(); } private void updateProperty(final String key, final String value) { systemProperties.setProperty(key, value == null ? StringUtil.EMPTY : value); } private List<String> getDayItems() { final List<String> items = new ArrayList<>(); for (int i = 0; i < 32; i++) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
or(paths::getProperty, prefix("cli.", commandLine::getOptionValue), systemProperties::getProperty); Path mavenConf; if (systemProperties.getProperty(MAVEN_INSTALLATION_CONF) != null) { mavenConf = fileSystem.getPath(systemProperties.getProperty(MAVEN_INSTALLATION_CONF)); } else if (systemProperties.getProperty("maven.conf") != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java
assertEquals("fff", s36, "7"); String s35 = props2.getProperty("g"); assertEquals("g", s35, "8"); String s34 = props2.getProperty("h h"); assertEquals("", s34, "9"); String s33 = props2.getProperty(" "); assertEquals("i=i", s33, "10"); String s32 = props2.getProperty("j"); assertEquals(" j", s32, "11");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/PACTest.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Oct 01 12:01:17 UTC 2023 - 22.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
helper.updateSystemProperties(); assertNull(System.getProperty("fess." + now)); assertNull(System.getProperty("test." + now)); appValue.set("=abc\nfess." + now + "=test1\ntest." + now + "=test2"); helper.updateSystemProperties(); assertEquals("test1", System.getProperty("fess." + now)); assertEquals("test2", System.getProperty("test." + now)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
if (fessConfig instanceof SimpleImpl) { final Properties prop = new Properties(); ((SimpleImpl) fessConfig).keySet().stream().forEach(k -> prop.setProperty(k, fessConfig.get(k))); final ZipEntry entry = new ZipEntry(id + "/fess_config.properties"); try { zos.putNextEntry(entry); prop.store(zos, getHostInfo());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} } initializeProbes(); final String httpAddress = SystemUtil.getSearchEngineHttpAddress(); if (StringUtil.isNotBlank(httpAddress)) { System.setProperty(FesenClient.HTTP_ADDRESS, httpAddress); } TimeoutTask systemMonitorTask = null; TimeoutTask hotThreadMonitorTask = null; Thread commandThread = null; int exitCode;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24K bytes - Viewed (0)