- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 857 for 100 (0.22 sec)
-
src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java
return timeoutMs; } /** * Get the timeout value in 100-nanosecond intervals as required by MS-SMB2 * @return the timeout in 100-nanosecond intervals */ public long getTimeoutFor100Ns() { if (timeoutMs == 0) { return 0L; // Persistent handles use 0 } // Convert milliseconds to 100-nanosecond intervals // 1 ms = 10,000 * 100ns intervals
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java
// Write to buffer byte[] buffer = new byte[4096]; int bytesWritten = request.writeBytesWireFormat(buffer, 100); assertEquals(48 + 1024, bytesWritten); // Verify written structure assertEquals(49, SMBUtil.readInt2(buffer, 100)); // Structure size assertEquals(1024, SMBUtil.readInt4(buffer, 104)); // Data length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
bb.putShort((short) 0); // Decode int decodedSize = referral.decode(testBuffer, 0, testBuffer.length); // Verify assertEquals(100, decodedSize); assertEquals(3, referral.getVersion()); assertEquals(100, referral.getSize()); assertEquals(1, referral.getServerType()); assertEquals(0, referral.getRFlags()); assertEquals(5, referral.getProximity());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
assertTrue(response instanceof NetServerEnum2Response); } @Test @DisplayName("Test writeSetupWireFormat returns 0") void testWriteSetupWireFormat() { byte[] dst = new byte[100]; int result = response.writeSetupWireFormat(dst, 0); assertEquals(0, result); // Test with different offset result = response.writeSetupWireFormat(dst, 50); assertEquals(0, result);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/QueuesTest.java
Future<?> possiblyIgnoredError4 = threadPool.submit(new Producer(q, 20)); List<Object> buf = new ArrayList<>(); int elements = drain(q, buf, 100, MAX_VALUE, NANOSECONDS, interruptibly); assertEquals(100, elements); assertEquals(100, buf.size()); assertDrained(q); } } public void testDrainTimesOut() throws Exception { for (BlockingQueue<Object> q : blockingQueues()) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
int length = ASN1Util.readLength(s, 100, false); assertEquals(-1, length); } @Test void testReadLength_EOF() { // EOF when length expected InputStream s = new ByteArrayInputStream(new byte[] {}); assertThrows(EOFException.class, () -> { ASN1Util.readLength(s, 100, false); }); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
ace = new ACE(); } @Test @DisplayName("Test decode with allow ACE") void testDecodeAllowACE() throws Exception { // Prepare test data - Allow ACE testBuffer = new byte[100]; testBuffer[0] = 0x00; // Allow ACE testBuffer[1] = 0x03; // FLAGS_OBJECT_INHERIT | FLAGS_CONTAINER_INHERIT testBuffer[2] = 0x20; // Size low byte (32) testBuffer[3] = 0x00; // Size high byte
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
return searchBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); // updateMap.put("click_count", 100); return updateMap; } @Override protected void testUpdate() { // Test: update settings api final Map<String, Object> updateMap = getUpdateMap();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 02:18:38 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/ja/docs/deployment/manually.md
//// tab | Uvicorn * <a href="https://www.uvicorn.org/" class="external-link" target="_blank">Uvicorn</a>, uvloopとhttptoolsを基にした高速なASGIサーバ。 <div class="termy"> ```console $ pip install "uvicorn[standard]" ---> 100% ``` </div> //// /// tip | 豆知識 `standard` を加えることで、Uvicornがインストールされ、いくつかの推奨される依存関係を利用するようになります。 これには、`asyncio` の高性能な完全互換品である `uvloop` が含まれ、並行処理のパフォーマンスが大幅に向上します。 ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 2.3K bytes - Viewed (0)