- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 90 for consistency (0.78 sec)
-
src/test/java/jcifs/internal/SmbNegotiationRequestTest.java
@DisplayName("Test implementation consistency") void testImplementationConsistency() { // Given SmbNegotiationRequest consistentRequest = new TestSmbNegotiationRequest(true); // When & Then - verify consistency across multiple calls for (int i = 0; i < 10; i++) { assertTrue(consistentRequest.isSigningEnforced(), "Implementation should consistently return the same value"); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java
ndrShort1.encode(encodeBuffer); NdrShort ndrShort2 = new NdrShort(0); ndrShort2.decode(decodeBuffer); // Then: Should maintain masked value consistency verify(encodeBuffer).enc_ndr_short(maskedValue); verify(decodeBuffer).dec_ndr_short(); assertEquals(maskedValue, ndrShort1.value); assertEquals(maskedValue, ndrShort2.value);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/FilenameExtractor.java
*/ public FilenameExtractor() { // Default constructor } /** * Extracts the filename from the parameters. * * <p>Note: The input stream is validated for consistency with the Extractor interface, * but is not actually read. Only the resource name from the parameters is used.</p> * * @param in The input stream (validated but not read)Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
* Provides CRUD operations for groups, including integration with LDAP manager * and user-group relationships. Handles group pagination, searching, and * maintaining data consistency between groups and associated users. */ public class GroupService { /** Behavior class for group database operations */ @Resource protected GroupBhv groupBhv;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/DialectVersionTest.java
assertEquals(0, DialectVersion.SMB302.compareTo(DialectVersion.SMB302)); } @Test @DisplayName("Should return consistent ordinal values") void testOrdinalValues() { // Ordinal values should be consistent with enum declaration order assertTrue(DialectVersion.SMB1.ordinal() < DialectVersion.SMB202.ordinal());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md
- Exception types and messages - Stream consumption (should not consume) - Consistency across multiple calls **Test Count**: 11 tests **Key Scenarios**: - ✅ Validates non-null streams - ✅ Throws CrawlerSystemException for null - ✅ Called during getText execution - ✅ Does not consume or modify stream - ✅ Consistent behavior across multiple calls - ✅ Works with various InputStream types ---
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java
/** * This class contains constants for field names used in the Fess Suggest system. * These constants represent various field names that are used throughout the application * to ensure consistency and avoid hardcoding strings. * * <ul> * <li>{@link #ID} - The unique identifier field.</li> * <li>{@link #TEXT} - The text content field.</li> * <li>{@link #READING_PREFIX} - The prefix for reading fields.</li>
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
assertEquals("parentdomain", testConfig.getDefaultDomain()); // Inherited } @Test @DisplayName("Should validate configuration consistency") void testConfigurationValidation() throws CIFSException { // Given Properties props = new Properties(); props.setProperty("jcifs.smb.client.minVersion", "SMB311");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
} // Then - no exceptions should have been thrown assertTrue(true); // If we reach here, no exceptions occurred } /** * Test consistency across multiple calls */ @Test @DisplayName("Test consistency across multiple calls") public void testConsistencyAcrossMultipleCalls() { // Given smbComTreeDisconnect = new SmbComTreeDisconnect(config);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
TransWaitNamedPipeResponse testResponse = new TransWaitNamedPipeResponse(testConfig); // Assert assertNotNull(testResponse); } @Test @DisplayName("Test toString consistency across multiple calls") void testToStringConsistency() { // Act String result1 = response.toString(); String result2 = response.toString(); // Assert
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0)