- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 573 for session2 (0.04 sec)
-
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
Arrays.fill(this.password, '\0'); this.password = null; } // Also remove from secure key manager if we have a session if (this.sessionId != null) { keyManager.removeSessionKey(this.sessionId); this.sessionId = null; } } /** * Check if the authentication has expired based on TTL *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
assertArrayEquals(blob, resp.getBlob(), "Security blob should match"); assertEquals(sessionFlags, resp.getSessionFlags(), "Session flags should decode"); assertTrue(resp.isLoggedInAsGuest(), "Guest/anonymous should be detected"); // prepare should propagate session id when received CIFSContext mockCtx = mock(CIFSContext.class); when(mockCtx.getConfig()).thenReturn(mock(Configuration.class));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
* Command-line options for the thumbnail generator. */ protected static class Options { /** * Session ID for filtering thumbnail generation. */ @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID") protected String sessionId; /** * Name identifier for the thumbnail generation task. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
} /** * Stores a crawling configuration in the session-based storage with a unique identifier. * The generated session count ID combines the session ID with an incrementing counter. * * @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 */
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/test/java/org/codelibs/fess/job/SuggestJobTest.java
} // Test session ID generation public void test_sessionIdGeneration() { assertNull(suggestJob.sessionId); mockProcessHelper.setExitValue(0); suggestJob.execute(); assertNotNull(suggestJob.sessionId); assertEquals(15, suggestJob.sessionId.length()); // Check that session ID contains only alphabetic characters
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
return new ArrayList<>(); // Always return empty for fast tests } public String store(String sessionId, DataConfig dataConfig) { return sessionId + "-" + dataConfig.getId(); } public void remove(String sessionCountId) { // No-op } }, "crawlingConfigHelper");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
@Size(max = 1000) public String id; /** * The session identifier of the crawling session. * This is a required field that identifies the specific crawling session. * Maximum length is 20 characters. */ @Required @Size(max = 20) public String sessionId; /** * The name or description of the crawling session.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
* Initiates crawling for specified web and file configurations. * * @param sessionId The session ID for this crawling operation * @param webConfigIdList List of web configuration IDs to crawl, null for all * @param fileConfigIdList List of file configuration IDs to crawl, null for all */ public void crawl(final String sessionId, final List<String> webConfigIdList, final List<String> fileConfigIdList) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
SmbSession ssn; long now; ListIterator iter = sessions.listIterator(); while (iter.hasNext()) { ssn = (SmbSession) iter.next(); if (ssn.matches(auth)) { ssn.auth = auth; return ssn; } } /* logoff old sessions */ if (SO_TIMEOUT > 0 && sessionExpiration < (now = System.currentTimeMillis())) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
// The result should contain Session Id with the generated session ID assertNotNull(thumbnailJob.sessionId); assertTrue(result.contains("Session Id:")); // The test cannot actually start the process since it requires many dependencies // The execute method catches the exception and returns the session ID } // Test execute with custom session ID
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0)