- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 17 for male (0.02 seconds)
-
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorConcurrencyTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.dbflute.optional.OptionalThing; import org.junit.jupiter.api.Test; /** * Concurrency and thread-safety tests for RankFusionProcessor. * Tests the improvements made to thread safety using CopyOnWriteArrayList. */ public class RankFusionProcessorConcurrencyTest extends UnitFessTestCase { private static final String ID_FIELD = "_id"; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.5K bytes - Click Count (0) -
src/main/resources/fess_message_pl.properties
errors.password_length = Hasło musi mieć co najmniej {0} znaków. errors.password_no_uppercase = Hasło musi zawierać co najmniej jedną wielką literę. errors.password_no_lowercase = Hasło musi zawierać co najmniej jedną małą literę. errors.password_no_digit = Hasło musi zawierać co najmniej jedną cyfrę. errors.password_no_special_char = Hasło musi zawierać co najmniej jeden znak specjalny.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
final AtomicReference<Throwable> caughtException = new AtomicReference<>(); indexUpdater.setUncaughtExceptionHandler((t, e) -> caughtException.set(e)); // Make dataService throw ContainerNotAvailableException ((TestDataService) dataService).setThrowContainerNotAvailable(true); indexUpdater.start(); indexUpdater.join(1000);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
TermQuery termQuery = new TermQuery(new Term("field", "value")); boolQueryBuilder.add(termQuery, BooleanClause.Occur.MUST_NOT); // Add a MUST clause to make the query valid TermQuery termQuery2 = new TermQuery(new Term("field2", "value2")); boolQueryBuilder.add(termQuery2, BooleanClause.Occur.MUST); BooleanQuery booleanQuery = boolQueryBuilder.build();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
assertTrue("Constructor should be protected", java.lang.reflect.Modifier.isProtected(constructor.getModifiers())); // Test that constructor is accessible when made accessible constructor.setAccessible(true); ThreadDumpUtil instance = constructor.newInstance(); assertNotNull(instance);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/test/resources/thumbnail/test_generate_thumbnail.sh
echo "" # Check if the script exists if [[ ! -f "${GENERATE_THUMBNAIL}" ]]; then echo -e "${RED}ERROR: generate-thumbnail script not found at ${GENERATE_THUMBNAIL}${NC}" exit 1 fi # Make sure the script is executable chmod +x "${GENERATE_THUMBNAIL}" echo "--- Basic argument tests ---" # Test: No arguments run_test "no arguments" 1 "${GENERATE_THUMBNAIL}" # Test: Empty command typeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 04 08:02:36 GMT 2025 - 7.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp
<button type="submit" class="btn btn-success" name="createDir"> <i class="fa fa-make" aria-hidden="true"></i> <la:message key="labels.crud_button_create"/> </button>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 20.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
assertTrue("Constructor should be private", java.lang.reflect.Modifier.isPrivate(constructor.getModifiers())); // Test that constructor is accessible when made accessible constructor.setAccessible(true); SystemUtil instance = constructor.newInstance(); assertNotNull(instance);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
if (logger.isDebugEnabled()) { logger.debug("Deleted {} stale documents.", numOfDeleted); } return numOfDeleted; } /** * Refreshes the specified index to make recent changes visible for search. * This operation ensures that all pending writes are persisted and searchable. * * @param searchEngineClient the search engine client to use for refresh
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.1K bytes - Click Count (0)