- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 93 for consistency (2.89 sec)
-
src/test/java/jcifs/internal/NotifyResponseTest.java
assertEquals("file with spaces.txt", result.get(1).getFileName()); assertEquals("file@#$%.txt", result.get(2).getFileName()); } @Test @DisplayName("Test NotifyResponse consistency across multiple calls") void testNotifyResponseConsistency() { List<FileNotifyInformation> notifications = Arrays.asList(mockNotifyInfo1, mockNotifyInfo2);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java
* possible readings. * </p> * * <p> * The class also utilizes ICU4J's {@link com.ibm.icu.text.Transliterator} to convert full-width characters * to half-width and to convert any characters to lowercase, ensuring consistency in the output. * </p> * * <p> * Example: * For the input "キャ", the converter might return a list containing "kya". * For the input "ジュ", the converter might return a list containing "zyu", "ju", and "jyu".
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
assertEquals(initialFiles.length + 1, updatedFiles.length); } ``` ## 9. Error Handling ### 9.1 Cache Consistency ```java public class CacheConsistencyManager { public void handleInconsistency(String directoryPath, String fileName) { log.warn("Cache inconsistency detected for: {}/{}", directoryPath, fileName); // Invalidate affected cache entries
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
// Null netName SmbShareInfo info3 = new SmbShareInfo(); assertEquals(0, info3.hashCode()); // Objects.hashCode(null) returns 0 } @Test @DisplayName("Test hashCode consistency") void testHashCodeConsistency() { SmbShareInfo info = new SmbShareInfo(TEST_NET_NAME, TEST_TYPE, TEST_REMARK); int hashCode1 = info.hashCode(); int hashCode2 = info.hashCode();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
return s; } @Nested @DisplayName("Basic Constructor and Utility Tests") class BasicTests { @Test @DisplayName("Textual constructor happy path and toString consistency") void testTextualConstructorAndToString() throws Exception { // Arrange SID sid = new SID("S-1-5-21-1-2-3-1029"); // Act & AssertRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/util/PathValidator.java
} return false; } /** * Normalize a path */ private String normalizePath(String path) { // Replace forward slashes with backslashes for consistency String normalized = path.replace('/', '\\'); // Remove duplicate slashes normalized = normalized.replaceAll("\\\\+", "\\\\"); // Remove trailing slash unless it's the rootRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java
String ruleId = testRule.getRuleId(); ResponseProcessor proc = testRule.getResponseProcessor(); // Verify consistency if (!"concurrentRule".equals(ruleId)) { errorCount.incrementAndGet(); } if (proc != processor) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 21.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
assertTrue(id.length() <= 445); } @Test public void testCreateSuggestTextIdConsistency() { // Test that same input always produces same output String text = "consistency test"; String id1 = SuggestUtil.createSuggestTextId(text); String id2 = SuggestUtil.createSuggestTextId(text); assertEquals(id1, id2); }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
/** * Deletes a crawling information record and all its associated parameters. * First deletes all related CrawlingInfoParam records, then deletes the main record * with immediate refresh to ensure consistency. * * @param crawlingInfo the crawling information entity to delete */ public void delete(final CrawlingInfo crawlingInfo) { setupDeleteCondition(crawlingInfo);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
assertEquals(longId.toString(), rule.getRuleId()); ResponseData responseData = new ResponseData(); assertTrue(rule.match(responseData)); } /** * Test rule behavior consistency */ public void test_ruleBehaviorConsistency() { TestRule rule = new TestRule("consistentRule", new TestResponseProcessor("consistentProcessor"), true);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0)