- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 617 for session3 (0.04 sec)
-
src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java
@Test @DisplayName("Test session finalization") public void testSessionFinalization() throws CIFSException { String sessionId = "test-session-4"; byte[] salt = preauthService.generatePreauthSalt(); preauthService.initializeSession(sessionId, salt, PreauthIntegrityService.HASH_ALGO_SHA512); assertNotNull(preauthService.getCurrentPreauthHash(sessionId));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerTest.java
List<Toolchain> toolchains = toolchainManager.getToolchains(session, "rare", null); assertEquals(1, toolchains.size()); } @Test void testModelsAndFactory() { MavenSession session = mock(MavenSession.class); Session sessionv4 = mock(Session.class); when(session.getSession()).thenReturn(sessionv4); when(sessionv4.getToolchains()) .thenReturn(List.of(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
PreauthIntegrityContext context = sessionContexts.get(sessionId); if (context == null) { if (enforceIntegrity) { throw new CIFSException("No preauth integrity context found for session: " + sessionId); } log.warn("No preauth integrity context for session {}, skipping validation", sessionId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlFilterService.java
* * @param sessionId the ID of the session for which the URLs should be excluded * @param urlList the list of URLs to be excluded */ void addExcludeUrlFilter(String sessionId, List<String> urlList); /** * Deletes the URL filter associated with the specified session ID. * * @param sessionId the ID of the session whose URL filter is to be deleted */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 3.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
*/ @Override public void delete(final String sessionId) { deleteBySessionId(sessionId); includeFilterCache.invalidate(sessionId); excludeFilterCache.invalidate(sessionId); } /** * Gets the list of include URL patterns for the specified session. * * @param sessionId The session ID. * @return The list of compiled include patterns.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
assertArrayEquals(testKey, rawKey2, "Should still match original"); } @Test public void testRemoveSessionKey() { String sessionId = "test-session-3"; keyManager.storeSessionKey(sessionId, testKey, "AES"); assertTrue(keyManager.hasSessionKey(sessionId), "Key should exist"); keyManager.removeSessionKey(sessionId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/SessionReuseTest.kt
// Force reuse. This appears flaky (30% of the time) even though sessions are reused. // javax.net.ssl.SSLHandshakeException: No new session is allowed and no existing // session can be resumed // // Report https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8264944 // Sessions improvement https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8245576
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 6K bytes - Viewed (1) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
* * @param sessionId The session ID. */ @Override public void delete(final String sessionId) { deleteBySessionId(sessionId); } /** * Gets an access result by session ID and URL. * * @param sessionId The session ID. * @param url The URL. * @return The access result, or null if not found. */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
/** * Returns the count of access results for the given session ID. * * @param sessionId the session ID * @return the count of access results */ int getCount(String sessionId); /** * Deletes access results for the given session ID. * * @param sessionId the session ID */ void delete(String sessionId); /** * Deletes all access results. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
/** * Test multiple initializations with same session ID */ public void test_multipleInit_sameSessionId() { String sessionId = "test-session-017"; // First initialization urlFilter.init(sessionId); urlFilter.addInclude("https://first.com/.*"); // Second initialization with same session ID urlFilter.init(sessionId);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0)