- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 263 for DeVault (0.03 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
default void setSearchLog(final boolean value) { setSystemPropertyAsBoolean(Constants.SEARCH_LOG_PROPERTY, value); } default boolean isSearchLog() { return getSystemPropertyAsBoolean(Constants.SEARCH_LOG_PROPERTY, true); } default void setUserInfo(final boolean value) { setSystemPropertyAsBoolean(Constants.USER_INFO_PROPERTY, value); } default boolean isUserInfo() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
assertEquals("value1", result1); // Test with empty value String result2 = (String) method.invoke(crawler, dataMap, "key2", "default"); assertEquals("default", result2); // Test with null value String result3 = (String) method.invoke(crawler, dataMap, "key3", "default"); assertEquals("default", result3);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
return generateCalled; } public boolean isDestroyCalled() { return destroyCalled; } } public void test_isAvailable() { // Test default implementation generator = new TestThumbnailGenerator(); assertTrue(generator.isAvailable()); } public void test_isTarget() { // Test isTarget method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/ClassSanityTester.java
setDefault(Float.class, 1F); setDefault(double.class, 1D); setDefault(Double.class, 1D); setDefault(Class.class, Class.class); } /** * Sets the default value for {@code type}. The default value isn't used in testing {@link * Object#equals} because more than one sample instances are needed for testing inequality. To set
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 32.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
queryCommand = new WildcardQueryCommand(); queryCommand.register(); } public void test_convertWildcardQuery_defaultField() throws Exception { // Test with default field QueryContext queryContext = new QueryContext("test*", false); WildcardQuery wildcardQuery = new WildcardQuery(new Term(Constants.DEFAULT_FIELD, "test*"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
} } public void test_getName() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Test default name (null) assertNull(emptyGenerator.getName()); // Test after setting name emptyGenerator.setName("testGenerator"); assertEquals("testGenerator", emptyGenerator.getName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
/** Flag indicating whether the process has timed out */ protected boolean processTimeout = false; /** * Default constructor for ExecJob. * Initializes default values for job configuration. */ protected ExecJob() { // Default constructor } /** * Executes the job and returns the result as a string.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/HostAndPortTest.java
// Well-formed strings with bad default ports. checkFromStringCase("gmail.com:81", -1, "gmail.com", 81, true); checkFromStringCase("192.0.2.2:83", -1, "192.0.2.2", 83, true); checkFromStringCase("[2001::2]:85", -1, "2001::2", 85, true); checkFromStringCase("goo.gl:65535", 65536, "goo.gl", 65535, true); // No port, bad default. checkFromStringCase("google.com", -1, "google.com", -1, false);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/HostAndPortTest.java
// Well-formed strings with bad default ports. checkFromStringCase("gmail.com:81", -1, "gmail.com", 81, true); checkFromStringCase("192.0.2.2:83", -1, "192.0.2.2", 83, true); checkFromStringCase("[2001::2]:85", -1, "2001::2", 85, true); checkFromStringCase("goo.gl:65535", 65536, "goo.gl", 65535, true); // No port, bad default. checkFromStringCase("google.com", -1, "google.com", -1, false);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
* Provides common functionality for processing and executing search queries. */ public abstract class QueryCommand { /** * Default constructor for QueryCommand. * Creates a new instance of the query command with default settings. */ public QueryCommand() { // Default constructor } /** * Executes the query command and returns a QueryBuilder.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0)