- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 75 for THIRD (0.02 sec)
-
src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java
assertEquals("file2.txt", second.getName()); assertTrue(iterator.hasNext(), "Should have third element"); SmbResource third = iterator.next(); assertNotNull(third, "Third element should not be null"); assertEquals("file3.txt", third.getName()); assertFalse(iterator.hasNext(), "Should not have more elements"); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/StringUtilTest.java
String result = StringUtil.join(null, "first", "second", "third"); assertEquals("firstnullsecondnullthird", result); } @Test @DisplayName("Should handle null elements in array") void testJoinWithNullElements() { String result = StringUtil.join(",", "first", null, "third"); assertEquals("first,null,third", result); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ErrorToWarnRewritePolicyTest.java
assertEquals(Level.DEBUG, result.getLevel()); } public void test_rewrite_multiple_logger_names() { String[] loggerNames = { "test.logger", "another.logger", "third.logger" }; ErrorToWarnRewritePolicy policy = new ErrorToWarnRewritePolicy(loggerNames); LogEvent event1 = Log4jLogEvent.newBuilder() .setLoggerName("test.logger.sub")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/BufferCacheImplTest.java
byte[] third = impl.getBuffer(); // cache empty -> new with size 3 assertSame(a, first, "First get should return first cached buffer"); assertSame(c, second, "Second get should return second cached buffer"); assertNotSame(d, third, "Third get should allocate a new buffer (not the dropped one)");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/JAASAuthenticatorTest.java
} else { fail("Inconsistent behavior: first=" + first + ", second=" + second); } // Third call should return the same cached Subject instance Subject third = auth.getSubject(); assertEquals(second, third, "Subsequent calls should return same cached result"); // Refresh should clear the cache auth.refresh();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/en/docs/deployment/https.md
* For HTTPS, **the server** needs to **have "certificates"** generated by a **third party**. * Those certificates are actually **acquired** from the third party, not "generated". * Certificates have a **lifetime**. * They **expire**. * And then they need to be **renewed**, **acquired again** from the third party. * The encryption of the connection happens at the **TCP level**. * That's one layer **below HTTP**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 19:34:08 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
DfsReferralDataImpl third = createInitializedDfsReferralDataImpl(); // Build chain first.append(second); first.append(third); // Verify chain assertEquals(third, first.next()); assertEquals(second, third.next()); assertEquals(first, second.next()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
item.setNewInput(""); assertEquals("", item.toLineString()); assertTrue(item.isUpdated()); assertTrue(item.isDeleted()); item.setNewInput("third"); assertEquals("third", item.toLineString()); assertTrue(item.isUpdated()); assertFalse(item.isDeleted()); } public void test_specialCharacters() { // Test with special characters
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/tls/README.md
3. [Generate and use Self-signed Keys and Certificates with MinIO](#generate-use-self-signed-keys-certificates) 4. [Install Certificates from Third-party CAs](#install-certificates-from-third-party-cas) ## 1. Install MinIO Server
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java
assertEquals("", result1); // Second call (even) should fail String result2 = aggregateLogJob.execute(); assertTrue(result2.contains("Even call error")); // Third call (odd) should succeed String result3 = aggregateLogJob.execute(); assertEquals("", result3); } public void test_execute_performanceWithLargeErrorMessage() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0)