- Sort Score
- Result 10 results
- Languages All
Results 1561 - 1570 of 1,669 for testInt (0.06 sec)
-
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
@ExtendWith(MockitoExtension.class) @DisplayName("DcerpcMessage Tests") class DcerpcMessageTest { @Mock private NdrBuffer mockBuffer; private TestDcerpcMessage message; // Concrete implementation for testing abstract DcerpcMessage private static class TestDcerpcMessage extends DcerpcMessage { private int opnumValue; public TestDcerpcMessage(int opnumValue) { this.opnumValue = opnumValue;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
// When/Then assertThrows(NullPointerException.class, () -> { new Type3Message((byte[]) null); }); } /** * Helper method to create a mock Type 2 message for testing */ private Type2Message createMockType2Message() { // Create a basic Type 2 message with challenge byte[] challenge = new byte[8]; new SecureRandom().nextBytes(challenge);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect.testing.google; import static com.google.common.collect.Maps.immutableEntry; import static java.util.Collections.singleton; import static java.util.Collections.unmodifiableList; import static junit.framework.TestCase.assertEquals;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 14.8K bytes - Viewed (0) -
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) -
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) -
docs/de/docs/tutorial/security/first-steps.md
Es kann von Anwendungen und Systemen Dritter verwendet werden. Und es kann auch von Ihnen selbst verwendet werden, um dieselbe Anwendung zu debuggen, zu prüfen und zu testen. ## Der `password`-Flow Lassen Sie uns nun etwas zurückgehen und verstehen, was das alles ist.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.2K 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)