- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 96 for beat (0.01 sec)
-
integration-tests/gradle/gradlew.bat
cpovirk <******@****.***> 1753125117 -0700
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 21 19:14:29 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
/** * Performs a search operation using the specified query and parameters. * * @param query the search query string * @param params the search request parameters * @param userBean the optional user bean for access control * @return the search result containing documents and metadata */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
} } /** * Copies the source Bean to a new instance of the destination Bean and returns it. * * @param <T> The type of the destination Bean. * @param src The source Bean. Must not be {@literal null}. * @param destClass The type of the destination Bean. Must not be {@literal null}. * @return The newly copied Bean. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
}); } /** * Sets up the search conditions for group list queries based on pager criteria. * Configures the condition bean with ID filtering and ordering by name. * * @param cb the condition bean for building the query * @param groupPager the pager containing search and filter criteria */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
sessionManager.errors().saveMessages(messages); } /** * Copies properties from source bean to destination bean. * This is a utility method that wraps BeanUtil.copyBeanToBean with custom options. * * @param src the source bean object * @param dest the destination bean object * @param option a consumer function to configure copy options */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
FessUserBean anotherBean = new FessUserBean(anotherUser); assertSame(anotherUser, anotherBean.getFessUser()); } public void test_empty() { // Test empty user bean creation FessUserBean emptyBean = FessUserBean.empty(); assertNotNull(emptyBean); // Test getUserId returns EMPTY_USER_ID assertEquals(Constants.EMPTY_USER_ID, emptyBean.getUserId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
README.md
nameProperty.setValue(bean, "John Doe"); // Bean copying with flexible options BeanUtil.copyBeanToBean(source, destination); BeanUtil.copyBeanToBean(source, destination, options -> options.exclude("password", "internalId")); // Convert between beans and maps Map<String, Object> map = BeanUtil.copyBeanToNewMap(bean); MyBean newBean = BeanUtil.copyMapToNewBean(map, MyBean.class); ``` ### Type Conversion
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java
* @return The user type. */ OptionalThing<String> supply(); } /** * The supplier of user bean. */ @FunctionalInterface public interface UserBeanSupplier { /** * Supply the user bean. * @return The user bean. */ OptionalThing<FessUserBean> supply(); } /** * The supplier of application type. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionTest.java
TestBean bean = new TestBean(); // Test null value (should be valid) bean.setCronExpression(null); Set<ConstraintViolation<TestBean>> violations = validator.validate(bean); assertTrue(violations.isEmpty()); // Test empty string (should be valid) bean.setCronExpression(""); violations = validator.validate(bean); assertTrue(violations.isEmpty());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
userBhv.insertOrUpdate(entity); }); } /** * Sets up the list condition for the role query. * @param cb The role condition bean. * @param rolePager The role pager. */ protected void setupListCondition(final RoleCB cb, final RolePager rolePager) { if (rolePager.id != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0)