- Sort Score
- Result 10 results
- Languages All
Results 1561 - 1570 of 1,676 for tentang (0.04 sec)
-
src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java
@Test @DisplayName("Test concrete implementation with multiple scenarios") void testConcreteImplementation() throws SMBProtocolDecodingException { // Create a concrete implementation for comprehensive testing CommonServerMessageBlockResponse concreteResponse = new CommonServerMessageBlockResponse() { private boolean async = false; private CommonServerMessageBlockResponse next;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
class NegotiateContextRequestTest { @Mock private Configuration mockConfig; private static final int BUFFER_SIZE = 1024; /** * Test custom implementation of NegotiateContextRequest for interface testing */ static class TestNegotiateContextRequest implements NegotiateContextRequest { private final int contextType; TestNegotiateContextRequest(int contextType) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
} private fun shortenSubprojectName( prefix: String, subProjectName: String, ): String { val shortenedSubprojectName = subProjectName.replace("internal", "i").replace("Testing", "T") if (shortenedSubprojectName.length + prefix.length <= 80) { return shortenedSubprojectName } return shortenedSubprojectName.replace(Regex("[aeiou]"), "") }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Sun Aug 03 22:40:28 UTC 2025 - 25.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java
* Test class for RuleManager interface. * Tests the contract and behavior of RuleManager implementations. */ public class RuleManagerTest extends PlainTestCase { /** * Test implementation of RuleManager for testing purposes */ public static class TestRuleManager implements RuleManager { private final List<Rule> rules = new ArrayList<>(); private int getRuleCallCount = 0; @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 23.8K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Doubles.java
* @since 21.0 */ public static double constrainToRange(double value, double min, double max) { // avoid auto-boxing by not using Preconditions.checkArgument(); see Guava issue 3984 // Reject NaN by testing for the good case (min <= max) instead of the bad (min > max). if (min <= max) { return Math.min(Math.max(value, min), max); } throw new IllegalArgumentException(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.7K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt
import okhttp3.OkHttpClient import okhttp3.Protocol import okhttp3.RecordingHostnameVerifier import okhttp3.Request import okhttp3.RequestBody.Companion.toRequestBody import okhttp3.TestUtil.assumeNotWindows import okhttp3.testing.PlatformRule import okhttp3.tls.HandshakeCertificates import okhttp3.tls.HeldCertificate import okio.Buffer import okio.ByteString import okio.ByteString.Companion.encodeUtf8 import org.junit.jupiter.api.AfterEach
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Aug 03 22:38:00 UTC 2025 - 28K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
// Then assertEquals(0x71, command & 0xFF); assertEquals(ServerMessageBlock.SMB_COM_TREE_DISCONNECT, (byte) command); } /** * Nested class for testing buffer operations */ @Nested @DisplayName("Buffer Operations Tests") class BufferOperationsTests { @Test @DisplayName("Test write operations with empty buffer")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
class SmbComNtTransactionResponseTest { @Mock private Configuration mockConfig; private TestSmbComNtTransactionResponse response; // Concrete implementation for testing private static class TestSmbComNtTransactionResponse extends SmbComNtTransactionResponse { public TestSmbComNtTransactionResponse(Configuration config) { super(config); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
for (int i = 0; i < tokens1.size(); i++) { assertEquals(tokens1.get(i).getTerm(), tokens2.get(i).getTerm()); } } /** * Test implementation of SuggestAnalyzer for testing purposes */ private static class TestSuggestAnalyzer implements SuggestAnalyzer { private boolean japaneseMode = false; public void setJapaneseMode(boolean japaneseMode) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0)