- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 81 for 880100 (0.3 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateResponse.java
/** * Create new RDMA negotiation response */ public RdmaNegotiateResponse() { // Initialize with default values this.status = 0; // Success this.selectedVersion = 0x0100; // SMB Direct 1.0 this.creditsGranted = 0; this.maxReceiveSize = RdmaCapabilities.DEFAULT_MAX_RECEIVE_SIZE; this.maxReadWriteSize = RdmaCapabilities.DEFAULT_MAX_READ_WRITE_SIZE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteResponseTest.java
Smb2WriteResponse response2 = new Smb2WriteResponse(mockConfig); byte[] buffer1 = createValidWriteResponse(100, 50); byte[] buffer2 = createValidWriteResponse(200, 100); response1.readBytesWireFormat(buffer1, 0); response2.readBytesWireFormat(buffer2, 0); // Each instance should maintain its own state
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
private final AtomicLong totalIpsBlocked = new AtomicLong(0); /** * Create rate limiter with default settings */ public AuthenticationRateLimiter() { this(5, 10, 100, Duration.ofMinutes(30), Duration.ofMinutes(5)); } /** * Create rate limiter with custom settings * * @param maxAttemptsPerAccount max failed attempts per account before lockout
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbPipeResource.java
*/ int PIPE_TYPE_RDWR = SmbConstants.O_RDWR; /** * Pipe operations should behave like the <code>CallNamedPipe</code> Win32 Named Pipe function. */ int PIPE_TYPE_CALL = 0x0100; /** * Pipe operations should behave like the <code>TransactNamedPipe</code> Win32 Named Pipe function. */ int PIPE_TYPE_TRANSACT = 0x0200; /** * Pipe is used for DCE */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
response.setDigest(mockDigest); when(mockDigest.verify(buffer, 0, 100, 0, response)).thenReturn(false); boolean result = response.verifySignature(buffer, 0, 100); assertTrue(result); assertFalse(response.isVerifyFailed()); } @Test @DisplayName("Should handle signature verification failure")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java
trans2FindFirst2 = new Trans2FindFirst2(mockConfig, "\\test", "*.*", 0x16, 10, 1024); byte[] buffer = new byte[100]; int read = trans2FindFirst2.readSetupWireFormat(buffer, 0, 100); assertEquals(0, read); } @Test @DisplayName("Test readParametersWireFormat returns 0") void testReadParametersWireFormat() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
<la:option value="20">20</la:option> <la:option value="30">30</la:option> <la:option value="40">40</la:option> <la:option value="50">50</la:option> <la:option value="100">100</la:option> </la:select> </div> </div> <div class="mb-3 row"> <label for="sortSearchOption" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message key="labels.index_sort"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
protwordsFile.insert(newItem); // Verify the item was added protwordsFile.reload(null); boolean found = false; PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 100); for (ProtwordsItem item : list) { if ("newWord".equals(item.getInput())) { found = true; break; } } assertTrue(found);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/DateFormatting.kt
var result = STANDARD_DATE_FORMAT.get().parse(this, position) if (position.index == length) { // STANDARD_DATE_FORMAT must match exactly; all text must be consumed, e.g. no ignored // non-standard trailing "+01:00". Those cases are covered below. return result } synchronized(BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS) { for (i in 0 until BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS.size) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 4.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java
initializeData(out); data = baos.toByteArray(); } private void initializeData(DataOutputStream out) throws IOException { /* Write out various test values NORMALLY */ out.write(new byte[] {-100, 100}); out.writeBoolean(true); out.writeBoolean(false); out.writeByte(100); out.writeByte(-100); out.writeByte((byte) 200); out.writeChar('a'); out.writeShort((short) -30000);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.9K bytes - Viewed (0)