- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 149 for session_id (0.11 sec)
-
src/test/java/jcifs/internal/RequestTest.java
} @Override public void setExtendedSecurity(boolean extendedSecurity) { // No-op for test } @Override public void setSessionId(long sessionId) { // No-op for test } @Override public void reset() { this.response = null; this.ignoreDisconnect = false; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
testEncryptionKey, testEncryptionKey); // Use same key for test byte[] plaintext = "Hello, SMB3 Encryption!".getBytes(); long sessionId = 0x123456789ABCDEF0L; // When - Encrypt byte[] encrypted = context.encryptMessage(plaintext, sessionId); // Then - Verify encrypted message structure assertNotNull(encrypted, "Encrypted message should not be null");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* * @param sessionId the session identifier * @param crawlingConfig the crawling configuration to store * @return the unique session count ID that can be used to retrieve the stored configuration */ public synchronized String store(final String sessionId, final CrawlingConfig crawlingConfig) { final String sessionCountId = sessionId + "-" + count;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
*/ private int currentPageNumber; /** * Crawling information ID. */ public String id; /** * Session ID for the crawling session. */ public String sessionId; /** * Creation time of the crawling information. */ public String createdTime; /** * Clears all pagination state and crawling information fields.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/app/pager/CrawlingInfoPagerTest.java
assertEquals(25, crawlinginfopage.getPageSize()); assertEquals(1, crawlinginfopage.getCurrentPageNumber()); assertNull(crawlinginfopage.id); assertNull(crawlinginfopage.sessionId); assertNull(crawlinginfopage.createdTime); assertEquals(1, crawlinginfopage.getDefaultCurrentPageNumber()); crawlinginfopage.setAllRecordCount(999);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
private boolean extendedSecurity; private final AtomicLong usageCount = new AtomicLong(1); private final AtomicBoolean transportAcquired = new AtomicBoolean(true); private long sessionId; private SMBSigningDigest digest; private Smb2EncryptionContext encryptionContext; private final String targetDomain; private final String targetHost;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt
assertEquals(0, client.connectionPool.connectionCount()) client.newCall(request).execute().use { response -> assertEquals(200, response.code) } assertEquals(2, sessionIds.size) assertEquals(sessionIds[0], sessionIds[1]) } @Test fun testDnsOverHttps() { assumeNetwork() client = client .newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 02 14:12:28 UTC 2025 - 29K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/SMBUtil.java
(byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // TreeId / AsyncId (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // SessionId (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // Signature
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java
RenderDataUtil.register(data, "crawlingInfoItems", crawlingInfoService.getCrawlingInfoList(crawlingInfoPager)); // page navi // restore from pager copyBeanToBean(crawlingInfoPager, form, op -> op.include("sessionId")); } // =================================================================================== // Edit Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} final FessConfig fessConfig = ComponentUtil.getFessConfig(); final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper(); final String sessionId = crawlingInfoHelper.getCanonicalSessionId(responseData.getSessionId()); final PathMappingHelper pathMappingHelper = ComponentUtil.getPathMappingHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0)