- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 168 for session1 (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
} } } /** * Removes the path mapping list for a session. * * @param sessionId the session ID */ public void removePathMappingList(final String sessionId) { pathMappingMap.remove(sessionId); } /** * Gets the path mapping list for a session. * * @param sessionId the session ID
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
public void test_execute_withCustomSessionId() { pythonJob.filename("test.py"); pythonJob.sessionId = "custom-session-123"; testProcessHelper.exitValue = 0; String result = pythonJob.execute(); assertTrue(result.contains("Session Id: custom-session-123")); assertEquals("custom-session-123", pythonJob.sessionId); } // Test execute with process failure
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K 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 (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
* * @param sessionId unique identifier for the process session * @param command the command to send to the process * @throws JobNotFoundException if no process is found for the given session ID * @throws JobProcessingException if there's an error sending the command */ public void sendCommand(final String sessionId, final String command) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
// Execute without setting session ID String result = crawlJob.execute(); assertNotNull(crawlJob.sessionId); // Check format: yyyyMMddHHmmss assertEquals(14, crawlJob.sessionId.length()); assertTrue(crawlJob.sessionId.matches("\\d{14}")); assertTrue(result.contains("Session Id: " + crawlJob.sessionId)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/service/FessUrlQueueService.java
* Fetches URL queue list for the specified session with configurable ordering strategy. * Supports sequential (default) and random ordering based on crawling configuration. * * @param sessionId the crawling session identifier * @return list of URL queue entries for processing */ @Override protected List<OpenSearchUrlQueue> fetchUrlQueueList(final String sessionId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4K bytes - Viewed (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.java
import okio.ByteString; /** * Runs a MockWebServer on localhost and uses it as the backend to receive an OAuth session. * * <p>Clients should call {@link #start}, {@link #newAuthorizeUrl} and {@link #close} in that order. * Clients may request multiple sessions. */ public final class OAuthSessionFactory extends Dispatcher implements Closeable { private final SecureRandom secureRandom = new SecureRandom();
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 3.8K 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/helper/UserInfoHelper.java
} /** * Retrieves or creates the result document IDs cache from the session. * The cache is implemented as an LRU map to limit memory usage. * * @param session the HTTP session * @return the result document IDs cache map */ private Map<String, String[]> getResultDocIdsCache(final HttpSession session) { @SuppressWarnings("unchecked")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K 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)