- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 265 for probar (0.05 sec)
-
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
assertEquals(entries1[i].getType(), entries2[i].getType()); assertEquals(entries2[i].getType(), entries3[i].getType()); } } @Test @DisplayName("Verify proper inheritance and interface implementation") void testInheritance() { // Verify MsrpcDfsRootEnum extends netdfs.NetrDfsEnumEx assertInstanceOf(netdfs.NetrDfsEnumEx.class, dfsRootEnum);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmSspTest.java
// Base64 encoded Type 3 message: NTLMSSP, Type 3 // User: "user", Domain: "DOMAIN", Workstation: "WORKSTATION" // This is a valid Type 3 message with proper structure private final String type3MessageBase64 = createValidType3Message(); /** * Creates a valid Type 3 NTLM message for testing */ private static String createValidType3Message() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * Security-focused test cases for Smb2NegotiateResponse input validation. * Tests various malformed input scenarios to ensure proper validation and * protection against buffer overflow, integer overflow, and other attacks. */ public class Smb2NegotiateResponseInputValidationTest { private Configuration mockConfig;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
We convert this iterable object into a proper `list` with `list(data.items())`. Then with `random.choice()` we can get a **random value** from the list, so, we get a tuple with `(id, name)`. It will be something like `("imdb-tt0371724", "The Hitchhiker's Guide to the Galaxy")`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
return true; } return false; } /** * Converts a crawling path to the appropriate protocol format. * Handles various path formats and adds proper protocol prefixes. * * @param path the original path to convert * @return the converted path with appropriate protocol prefix */ protected String convertCrawlingPath(final String path) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
* Tests for the MacHashFunction. * * @author Kurt Alfred Kluever */ @NullUnmarked public class MacHashFunctionTest extends TestCase { private static final ImmutableSet<String> INPUTS = ImmutableSet.of("", "Z", "foobar"); private static final SecretKey MD5_KEY = new SecretKeySpec("secret key".getBytes(UTF_8), "HmacMD5"); private static final SecretKey SHA1_KEY = new SecretKeySpec("secret key".getBytes(UTF_8), "HmacSHA1");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Dec 27 16:19:35 UTC 2024 - 13.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileOutputStreamTest.java
when(mockTreeHandle.send(any(Smb2WriteRequest.class), any())).thenReturn(mockWriteResponse); when(mockWriteResponse.getCount()).thenReturn(10, 5); // Return proper byte counts outputStream = new SmbFileOutputStream(mockFile, mockTreeHandle, mockFileHandle, SmbConstants.O_CREAT | SmbConstants.O_WRONLY | SmbConstants.O_TRUNC, SmbConstants.FILE_WRITE_DATA,
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/util/PathValidatorTest.java
assertThrows(SmbException.class, () -> { // Control character will be caught in strict mode strictValidator.validatePath("//server\u0001/share"); }); // Note: Proper UNC validation would require fixing the normalization to preserve \\ // for UNC paths. Current implementation can't distinguish UNC paths after normalization. } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
} @Test @DisplayName("Should handle binding URLs without endpoints correctly") void testParseBindingWithoutEndpoint() { // When/Then: URLs without proper endpoints should fail assertThrows(DcerpcException.class, () -> DcerpcHandle.parseBinding("ncacn_np:server")); } } @Nested @DisplayName("Constructor Tests")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
} break; default: break; } return OptionalEntity.empty(); } /** * Converts a form to a WebAuthentication entity with proper user and timestamp information. * * @param form the form containing the web authentication data * @return an optional WebAuthentication entity with updated metadata */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.3K bytes - Viewed (0)