- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 66 for 3600 (0.06 sec)
-
src/main/java/jcifs/config/BaseConfiguration.java
protected int netbiosRevcBufferSize = 576; /** NetBIOS retry count */ protected int netbiosRetryCount = 2; /** NetBIOS retry timeout in milliseconds */ protected int netbiosRetryTimeout = 3000; /** NetBIOS scope identifier */ protected String netbiosScope; /** Local port for NetBIOS communications */ protected int netbiosLocalPort = 0; /** Local address for NetBIOS communications */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
s[_i] = new DfsInfo200(); } s[_i].decode(_src); } } } } /** * DFS information level 300 structure for extended DFS information */ public static class DfsInfo300 extends NdrObject { /** * Default constructor for DfsInfo300 */ public DfsInfo300() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/resources/log4j2.xml
<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" /> <Property name="backup.max.history" value="10" /> <Property name="backup.max.age" value="90" /> <Property name="backup.audit.max.age" value="360" /> <Property name="backup.searchlog.max.age" value="90" /> <Property name="audit.log.pattern" value="%msg%n" /> <Property name="searchlog.log.pattern" value="%msg%n" /> </Properties> <Appenders>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Feb 20 13:17:33 UTC 2023 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
*/ Config.setProperty("jcifs.smb1.smb.client.soTimeout", "300000"); Config.setProperty("jcifs.smb1.netbios.cachePolicy", "600"); final Enumeration e = config.getInitParameterNames(); String name; while (e.hasMoreElements()) { name = (String) e.nextElement(); if (name.startsWith("jcifs.smb1.")) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
// Update parameters request.setReadLength(2000); request.setOffset(1000L); request.setMinimumCount(200); request.setRemainingBytes(3000); request.setPadding((byte) 4); request.setReadFlags((byte) 0x02); // Update file ID byte[] newFileId = new byte[16]; Arrays.fill(newFileId, (byte) 0xEF);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
int headerStart = 50; // Set structure size to 9 SMBUtil.writeInt2(9, buffer, bufferIndex); // Set buffer offset (relative to header start) SMBUtil.writeInt2(300, buffer, bufferIndex + 2); // Set buffer length SMBUtil.writeInt4(0, buffer, bufferIndex + 4); response = spy(response); when(response.getHeaderStart()).thenReturn(headerStart);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
auth1.equals(auth3); auth2.equals(auth3); } long totalTime = System.nanoTime() - startTime; // Should complete in reasonable time (< 10ms for 3000 operations) assertTrue(totalTime < 10_000_000L, "Null/empty password comparisons taking too long: " + totalTime + " ns"); } finally { auth1.close(); auth2.close();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java
// Set large amounts that won't fit in one buffer transaction.maxBufferSize = 100; transaction.setParameterBytesWritten(200); transaction.setDataBytesWritten(300); // First element transaction.nextElement(); assertTrue(transaction.hasMoreElements(), "Should have more elements for large data"); // Process multiple elements
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
serverData.securityMode = 0x0F; serverData.security = 1; serverData.maxNumberVcs = 1; serverData.maxRawSize = 65536; serverData.serverTimeZone = -300; serverData.encryptionKeyLength = 8; // Then assertEquals(0x12345678, serverData.sflags2); assertEquals(50, serverData.smaxMpxCount); assertEquals(65536, serverData.maxBufferSize);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
* Whether the cookie value is encrypted. */ protected boolean encryptedCookieValue = true; /** * The maximum age of the role information in seconds. */ protected long maxAge = 30 * 60; // sec /** * A map of cookie names to role names. */ protected Map<String, String> cookieNameMap; /** * A list of default roles. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15.1K bytes - Viewed (0)