- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 465 for invalidation (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/EditBody.java
import org.codelibs.fess.app.web.admin.dict.mapping.EditForm; /** * Request body class for mapping dictionary edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for mapping dictionary management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() { super();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/EditBody.java
import org.codelibs.fess.app.web.admin.dict.synonym.EditForm; /** * Request body class for synonym dictionary edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for synonym dictionary management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() { super();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
/** * Constructs and validates a PAC from raw data using provided Kerberos keys. * @param data the raw PAC data bytes * @param keys map of Kerberos keys for signature validation * @throws PACDecodingException if the PAC data is malformed or signature validation fails */ public Pac(byte[] data, Map<Integer, KerberosKey> keys) throws PACDecodingException { byte[] checksumData = data.clone(); try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
} @Test @DisplayName("Should fail validation when not received") void testIsValidNotReceived() { // When boolean valid = response.isValid(mockContext, mockRequest); // Then assertFalse(valid); } @Test @DisplayName("Should fail validation when signing enforced but not enabled")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt
@get:JvmName("noCache") val noCache: Boolean, /** If true, this response should not be cached. */ @get:JvmName("noStore") val noStore: Boolean, /** The duration past the response's served date that it can be served without validation. */ @get:JvmName("maxAgeSeconds") val maxAgeSeconds: Int, /** * The "s-maxage" directive is the max age for shared caches. Not to be confused with "max-age"
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.joblog; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * Form class for editing job log entries in the admin interface. * This form handles the editing of system job execution logs,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java
* allowing the error page to display relevant information and preserve search context. */ public class ErrorForm { /** Map of form fields and their validation error messages */ public Map<String, String[]> fields = new HashMap<>(); /** Search query parameter that caused the error */ public String q; /** URL parameter associated with the error */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
import jcifs.smb.SmbException; /** * Validator for SMB server responses to prevent buffer overflow and injection attacks. * * Features: * - Buffer bounds checking * - Integer overflow prevention * - Size validation * - Protocol compliance checking * - Malformed response detection */ public class ServerResponseValidator { private static final Logger log = LoggerFactory.getLogger(ServerResponseValidator.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/UploadForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.dict.stemmeroverride; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading stemmer override files to the Fess search engine. * Stemmer override allows custom rules to override the default stemming behavior for specific words.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
assertNull(exception.getCause()); } public void test_constructor_withNullType() { // Test constructor with null type String type = null; String message = "Token validation failed"; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message); assertNull(exception.getType()); assertEquals(message, exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0)