- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 215 for Fixed (0.01 sec)
-
src/test/java/jcifs/dcerpc/UUIDTest.java
} } @Nested @DisplayName("Edge Case Tests") class EdgeCaseTests { @Test @DisplayName("UUID with mixed case should parse correctly") void testMixedCaseUuid() { // Arrange String mixedCaseUuid = "00112233-4455-6677-8899-AaBbCcDdEeFf"; // ActRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt
val contentType: MediaType = multipartBody.contentType() val contentLength: Long = multipartBody.contentLength() multipartBody.writeTo(Buffer()) val mixed: MediaType = MultipartBody.MIXED val alternative: MediaType = MultipartBody.ALTERNATIVE val digest: MediaType = MultipartBody.DIGEST val parallel: MediaType = MultipartBody.PARALLEL val form: MediaType = MultipartBody.FORM
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Nov 05 18:28:35 UTC 2025 - 47K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java
// The iterator returns null when no elements, doesn't throw exception assertNull(iterator.next(), "Should return null when no next element"); } /** * Test multiple iterations with mixed filtering results. */ @Test void testMultipleIterationsWithFilter() throws Exception { // Given when(mockDelegate.hasNext()).thenReturn(true, true, true, false);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
assertEquals("オオサカ", ((TestAnalyzeToken) tokens.get(1)).getReading()); } @Test public void testAnalyzeAndReadingWithMixedContent() { // Test analyzeAndReading with mixed content (numbers, letters, special chars) String text = "Test123 ABC-456"; String field = "content"; String lang = "en";
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/jcifs/util/SmbCircuitBreakerTest.java
} } @Test public void testRollingWindowMetrics() throws Exception { SmbCircuitBreaker cbWithWindow = new SmbCircuitBreaker("window-test"); try { // Execute mixed operations for (int i = 0; i < 10; i++) { final int iteration = i; // Make effectively final for lambda try { cbWithWindow.executeWithCircuitBreaker(() -> {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilderTest.java
assertEquals(builder, result); // Test method chaining assertEquals("test_index", builder.settingsIndexName); // Test setting index name with mixed case builder.setSettingsIndexName("TeSt_InDeX_NaMe"); assertEquals("test_index_name", builder.settingsIndexName); // Test setting index name that's already lowercase
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 14.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
// Test with Unicode characters testTransformer.setName("変換器の名前"); assertEquals("変換器の名前", testTransformer.getName()); // Test with mixed characters testTransformer.setName("Transformer-変換器-123"); assertEquals("Transformer-変換器-123", testTransformer.getName()); } /** * Test name with very long string */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt
fun checkLowercase(name: ByteString): ByteString { for (i in 0 until name.size) { if (name[i] in 'A'.code.toByte()..'Z'.code.toByte()) { throw IOException("PROTOCOL_ERROR response malformed: mixed case name: ${name.utf8()}") } } return name }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 22.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java
} startLatch.countDown(); endLatch.await(); // All rules should be removed assertEquals(100, removeCount.get()); } /** * Test mixed operations */ public void test_mixedOperations() { TestRule rule1 = new TestRule("rule1", false); TestRule rule2 = new TestRule("rule2", true);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 23.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess.json
"discard_punctuation": false }, "korean_tokenizer": { "type": "fess_korean_tokenizer", "decompound_mode": "mixed", "user_dict_path": "${fess.dictionary.path}ko/nori.txt" }, "simplified_chinese_tokenizer": { "type": "fess_simplified_chinese_tokenizer" },
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Jun 06 14:17:42 UTC 2025 - 39.8K bytes - Viewed (0)