- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 274 for fully (0.03 sec)
-
src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java
assertEquals(10, result1); // Test at buffer end int result2 = response.decode(buffer, 90, 10); assertEquals(10, result2); // Test full buffer int result3 = response.decode(buffer, 0, 100); assertEquals(100, result3); } @Test @DisplayName("Should handle concurrent decode calls")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt
user.removePlanToCancel(this) if (!success) { javaNetSocket?.closeQuietly() rawSocket.closeQuietly() } } } /** Does all the work necessary to build a full HTTP or HTTPS connection on a raw socket. */ @Throws(IOException::class) private fun connectSocket() { val rawSocket = when (route.proxy.type()) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
assertEquals(expectedLength, ndrBuffer.getIndex()); assertEquals(expectedLength, ndrBuffer.getLength()); // Verify content (simplified check, full verification would involve decoding) assertEquals(testString.length() + 1, Encdec.dec_uint32le(buffer, 0)); // Actual count assertEquals(0, Encdec.dec_uint32le(buffer, 4)); // Offset
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
* get proper ticket caching. * * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs/Realm. * This can be a problem if using DFS in it's default configuration as that still returns referrals in short form.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
* Base kerberos authenticator * * Uses a subject that contains kerberos credentials for use in GSSAPI context establishment. * * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs. * This can be a problem if using DFS in it's default configuration as they still return referrals in short form. * See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
void testWriteParametersWireFormatSmallBuffer() { netShareEnum = new NetShareEnum(realConfig); // Buffer too small for the full parameters (need at least 19 bytes) byte[] dst = new byte[10]; assertThrows(ArrayIndexOutOfBoundsException.class, () -> { netShareEnum.writeParametersWireFormat(dst, 0); }); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/AllocInfoTest.java
boolean hasEnoughSpace = allocInfo.getFree() >= requiredSpace; // Then assertTrue(hasEnoughSpace); } @Test @DisplayName("Should support full disk detection pattern") void shouldSupportFullDiskDetectionPattern() { // Given TestAllocInfo fullDisk = new TestAllocInfo(1024L, 0L);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
} }; ComponentUtil.setFessConfig(fessConfig); ssoManager = new SsoManager(); assertEquals(expectedSsoType, ssoManager.getSsoType()); } // Test full integration scenarios public void test_fullScenario_ssoEnabled() { currentSsoType = "saml"; final LoginCredential expectedCredential = new TestLoginCredential("samluser");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMaker.java
* usually have much noticeable impact. A value of one permits only one thread to modify the map * at a time, but since read operations can proceed concurrently, this still yields higher * concurrency than full synchronization. Defaults to 4. * * <p><b>Note:</b> Prior to Guava release 9.0, the default was 16. It is possible the default will * change again in the future. If you care about this value, you should always choose it
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
mockwebserver/README.md
This library makes it easy to test that your app Does The Right Thing when it makes HTTP and HTTPS calls. It lets you specify which responses to return and then verify that requests were made as expected. Because it exercises your full HTTP stack, you can be confident that you're testing everything. You can even copy & paste HTTP responses from your real web server to create representative test cases. Or test that your code survives in
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 19 13:40:52 UTC 2025 - 8.1K bytes - Viewed (0)