- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 418 for Handling (0.05 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
provider = null; requestManager = null; super.tearDown(); } // Test isUseTimeZoneHandling() method public void test_isUseTimeZoneHandling() { // Verify that time zone handling is disabled assertFalse(provider.isUseTimeZoneHandling()); } // Test isAcceptCookieTimeZone() method public void test_isAcceptCookieTimeZone() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/ndr/NdrShortTest.java
import org.mockito.junit.jupiter.MockitoExtension; /** * Unit tests for {@link NdrShort}. The tests cover construction, * encoding and decoding logic, masking behaviour, alignment handling and * interaction with {@link NdrBuffer}. All public behaviour is exercised. */ @ExtendWith(MockitoExtension.class) class NdrShortTest { /** * A small reusable buffer for encode/decode tests. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
} /** * Creates a synonym item from the provided form data with validation. * * @param form the create form containing synonym data * @param hook the validation error hook for handling errors * @return OptionalEntity containing the created synonym item or empty if creation failed */ protected OptionalEntity<SynonymItem> createSynonymItem(final CreateForm form, final VaErrorHook hook) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
StackTraceElement topElement = stackTrace[0]; assertEquals(this.getClass().getName(), topElement.getClassName()); } public void test_nestedExceptions() { // Test nested exception handling Exception level3 = new RuntimeException("Level 3 error"); Exception level2 = new IllegalStateException("Level 2 error", level3); Exception level1 = new IOException("Level 1 error", level2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
checkVersionParsing("RELEASE", 0, 0, 0, 0, "RELEASE"); checkVersionParsing("2.0-1", 2, 0, 0, 1, null); // 0 at the beginning of a number has a special handling checkVersionParsing("02", 0, 0, 0, 0, "02"); checkVersionParsing("0.09", 0, 0, 0, 0, "0.09"); checkVersionParsing("0.2.09", 0, 0, 0, 0, "0.2.09"); checkVersionParsing("2.0-01", 2, 0, 0, 0, "01");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/TestSmbComTransactionResponseReader.java
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import jcifs.Configuration; import jcifs.SmbConstants; import jcifs.config.BaseConfiguration; /** * Tests for SMB1 transaction response handling */ public class TestSmbComTransactionResponseReader { /** * Default configuration used for Unicode support tests */ private Configuration cfg; @BeforeEach
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
len += pad8(bufferIndex); } else if (compound && this.nextCommand == 0 && this.readSize > 0) { // Apply compound response handling as per MS-SMB2 3.2.5.1.9 - correct for both compound and single responses // 3.2.5.1.9 Handling Compounded Responses // The final response in the compounded response chain will have NextCommand equal to 0,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
verify(response, never()).addHeader(eq("WWW-Authenticate"), eq("Basic realm=\"TestRealm\"")); } @Test void testDoFilter_ntlmType1Message() throws Exception { // Test NTLM Type 1 message handling // This test verifies that when a Type 1 NTLM message is received, // the filter processes it correctly through NtlmSsp.authenticate
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
import org.lastaflute.web.response.JsonResponse; /** * The hook for API failure. * * @author jflute */ public class FessApiFailureHook implements ApiFailureHook { // #change_it for handling API failure private static final Logger logger = LogManager.getLogger(FessApiFailureHook.class); // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtTransQuerySecurityDescTest.java
import org.mockito.junit.jupiter.MockitoExtension; /** * Unit tests for {@code NtTransQuerySecurityDesc}. * * The class under test contains a number of straightforward data‑layout * methods (writing parameters and handling empty wire formats) and an * informative {@link NtTransQuerySecurityDesc#toString()}. The tests * exercise normal behaviour, boundary values, and the interaction with * the underlying wire‑format helpers. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0)