- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 458 for containing (0.04 sec)
-
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
* from a parameter map. */ public class FieldConfigs { /** * Map containing field names as keys and their corresponding configuration values as values. */ private final Map<String, String> params; /** * Constructs a new FieldConfigs instance with the specified parameter map. * * @param params the map containing field names as keys and configuration values as values */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
*/ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of web authentications based on the provided pager. * * @param webAuthenticationPager The pager containing pagination and search criteria * @return List of web authentication configurations */ public List<WebAuthentication> getWebAuthenticationList(final WebAuthPager webAuthenticationPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
/** * Retrieves web configuration settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing web configuration settings list */ // GET /api/admin/webconfig/settings // PUT /api/admin/webconfig/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java
@Resource private RoleService roleService; /** * Retrieves role settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing role settings list */ // GET /api/admin/role/settings // PUT /api/admin/role/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
* @return an OptionalEntity containing the user if found */ public OptionalEntity<User> getUser(final String id) { return userBhv.selectByPK(id).map(u -> ComponentUtil.getAuthenticationManager().load(u)); } /** * Retrieves a user by their username. * * @param username the username to search for * @return an OptionalEntity containing the user if found */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestUnhashableCollectionGenerator.java
import com.google.common.collect.testing.SampleElements.Unhashables; import java.util.Collection; import java.util.List; import org.jspecify.annotations.NullMarked; /** * Creates collections containing unhashable sample elements, to be tested. * * @author Regina O'Dell */ @GwtCompatible @NullMarked public abstract class TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java
return asListHtml(); } /** * Displays a paginated list of search log entries. * * @param pageNumber the page number to display * @param form the search form containing filter criteria * @return HTML response with the search log list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse list(final Integer pageNumber, final SearchForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMultiset.java
* ordering. * * @throws NullPointerException if any element is null */ public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of( E e1, E e2, E e3, E e4) { return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4)); } /** * Returns an immutable sorted multiset containing the given elements sorted by their natural
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 29.5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Booleans.java
return (int) result; } /** * Returns an array containing the same values as {@code array}, but guaranteed to be of a * specified minimum length. If {@code array} already has a length of at least {@code minLength}, * it is returned directly. Otherwise, a new array of size {@code minLength + padding} is * returned, containing the values of {@code array}, and zeroes in the remaining places. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
return (int) result; } /** * Returns an array containing the same values as {@code array}, but guaranteed to be of a * specified minimum length. If {@code array} already has a length of at least {@code minLength}, * it is returned directly. Otherwise, a new array of size {@code minLength + padding} is * returned, containing the values of {@code array}, and zeroes in the remaining places. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0)