- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 134 for validated (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java
* This class extends FessApiAction to provide admin-specific functionality * including enhanced access control for administrative operations. * * <p>Admin API actions require special permissions and access tokens * that are validated against the admin role configuration.</p> */ public abstract class FessApiAdminAction extends FessApiAction { /** Logger instance for this class. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
* Reloads the document index by closing and reopening it. * * @param form the action form (validated but not used for configuration) * @return HTML response redirecting to the maintenance page */ @Execute @Secured({ ROLE }) public HtmlResponse reloadDocIndex(final ActionForm form) { validate(form, messages -> {}, this::asIndexHtml); verifyToken(this::asIndexHtml);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionTest.java
bean.setSpecialCron("invalid"); // Validate default group Set<ConstraintViolation<GroupTestBean>> violations = validator.validate(bean, Default.class); assertEquals(1, violations.size()); assertTrue(violations.iterator().next().getPropertyPath().toString().contains("defaultCron")); // Validate special group violations = validator.validate(bean, SpecialGroup.class);
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/web/admin/searchlog/SearchForm.java
} /** * Gets the page size for search log results with validation. * Returns the default page size if the current size is invalid. * * @return the validated page size */ public int getPageSize() { if (StringUtil.isBlank(size)) { return SearchLogPager.DEFAULT_PAGE_SIZE; } try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
} /** * Creates an encrypted user code from a user ID. * The user ID is encrypted using the primary cipher and validated against the configuration. * * @param userCode the raw user ID to encrypt * @return the encrypted and validated user code, or null if invalid */ protected String createUserCodeFromUserId(String userCode) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
DIGIT_MATCHER.or(LETTER_MATCHER).or(DASH_MATCHER); /** * Helper method for {@link #validateSyntax(List)}. Validates that one part of a domain name is * valid. * * @param part The domain name part to be validated * @param isFinalPart Is this the final (rightmost) domain part? * @return Whether the part is valid */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Preconditions.java
*/ /** * Ensures that an object reference passed as a parameter to the calling method is not null. * * @param reference an object reference * @return the non-null reference that was validated * @throws NullPointerException if {@code reference} is null * @see Verify#verifyNotNull Verify.verifyNotNull() */ @CanIgnoreReturnValue public static <T> T checkNotNull(@Nullable T reference) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 22:11:00 UTC 2025 - 53K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- kube-apiserver `--admission-control-config-file` files are now validated strictly (EnableStrict). Duplicate and unknown fields in the configuration will now cause an error. ([#128013](https://github.com/kubernetes/kubernetes/pull/128013), [@seans3](https://github.com/seans3))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
throw new SsoLoginException("unexpected set of artifacts received"); } } /** * Validates the OAuth2 state parameter. * @param session The HTTP session containing stored state data. * @param state The state parameter to validate. * @return The validated state data. */ protected StateData validateState(final HttpSession session, final String state) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
* .cacheControl(new CacheControl.Builder().noCache().build()) * .url("http://publicobject.com/helloworld.txt") * .build(); * ``` * * If it is only necessary to force a cached response to be validated by the server, use the more * efficient `max-age=0` directive instead: * * ```java * Request request = new Request.Builder() * .cacheControl(new CacheControl.Builder() * .maxAge(0, TimeUnit.SECONDS)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 26.9K bytes - Viewed (0)