- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 430 for session3 (0.05 sec)
-
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/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) -
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) -
compat/maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java
.setLocalRepository(getLocalRepository()); DefaultRepositorySystemSession session = new DefaultRepositorySystemSession(); LocalRepository localRepo = new LocalRepository(request.getLocalRepository().getBasedir()); session.setLocalRepositoryManager(new SimpleLocalRepositoryManagerFactory().newInstance(session, localRepo)); LegacySupport legacySupport = container.lookup(LegacySupport.class);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
* * @param parentUrl the parent URL to get encoding for * @param sessionId the session ID for the crawling session * @return the character encoding, or null if not found */ default String getParentEncoding(final String parentUrl, final String sessionId) { final String key = sessionId + ":" + parentUrl; String enc = parentEncodingMap.get(key); if (enc != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
return this; } /** * Sets the session ID for this job execution. * * @param sessionId the unique session identifier * @return this ExecJob instance for method chaining */ public ExecJob sessionId(final String sessionId) { this.sessionId = sessionId; return this; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K 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/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/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)