- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 43 for prop1 (0.01 sec)
-
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertTrue(cmdList.contains("-D" + Constants.SYSTEM_PROP_PREFIX + "prop1=value1")); assertTrue(cmdList.contains("-D" + Constants.SYSTEM_PROP_PREFIX + "prop2=value2")); // Clean up System.clearProperty(Constants.SYSTEM_PROP_PREFIX + "prop1"); System.clearProperty(Constants.SYSTEM_PROP_PREFIX + "prop2"); System.clearProperty("regular.property"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
} // Test method chaining public void test_methodChaining() { String property1 = "prop1"; String property2 = "prop2"; String property3 = "prop3"; FessMessages result = messages.addErrorsFrontHeader(property1).addConstraintsNotNullMessage(property2).addSuccessStartCrawlProcess(property3);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
* @param props the configuration properties * @param readConfigList the list of read configuration items */ @Override public void setupServerConfigIfNeeds(final BootLogger logger, final Tomcat server, final Connector connector, final Properties props, final List<String> readConfigList) { if (props == null) { return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
Properties props = new Properties(); props.setProperty("bool.true", "true"); props.setProperty("bool.false", "false"); props.setProperty("bool.yes", "yes"); props.setProperty("bool.no", "no"); props.setProperty("bool.on", "on"); props.setProperty("bool.off", "off");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
final Properties prop = new Properties(); lastModified = propertiesFile.lastModified(); prop.load(inStream); properties = prop; } @Override public synchronized void load(final Reader reader) throws IOException { final Properties prop = new Properties(); lastModified = propertiesFile.lastModified(); prop.load(reader); properties = prop;
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/test/java/org/codelibs/fess/query/QueryCommandTest.java
private static final long serialVersionUID = 1L; { // Force initialize the ObjectiveConfig's prop field using reflection try { java.lang.reflect.Field propField = org.lastaflute.core.direction.ObjectiveConfig.class.getDeclaredField("prop"); propField.setAccessible(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
} else if (Constants.NTLM.equals(scheme)) { final Properties props = new Properties(); paramMap.entrySet().stream().filter(e -> e.getKey().startsWith("jcifs.")).forEach(e -> { props.setProperty(e.getKey(), e.getValue()); }); authScheme = new NTLMScheme(new JcifsEngine(props)); } else if (Constants.FORM.equals(scheme)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
propField.setAccessible(true); // Create a mock JavaPropertiesResult java.util.Properties props = new java.util.Properties(); props.setProperty("job.max.crawler.processes", "5"); props.setProperty("java.command.path", "java"); org.dbflute.helper.jprop.JavaPropertiesReader reader =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
if (job != null) { prop.setProperty("job.runtime.id", job.getId()); prop.setProperty("job.runtime.name", job.getName()); } } prop.store(out, cmdList.toString()); } catch (final IOException e) { throw new IORuntimeException(e); } }
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/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FailureUrlDbm.java
} @Override public PropertyGateway findPropertyGateway(final String prop) { return doFindEpg(_epgMap, prop); } // =================================================================================== // Table Info
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0)