- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 621 for session2 (0.07 sec)
-
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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
* If the new session ID is different from the current one, it updates the session ID in the URL queue service. * @param sessionId The new session ID. */ public void setSessionId(final String sessionId) { if (StringUtil.isNotBlank(sessionId) && !sessionId.equals(crawlerContext.sessionId)) { urlQueueService.updateSessionId(crawlerContext.sessionId, sessionId); crawlerContext.sessionId = sessionId; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
} /** * Gets the session ID associated with this encrypted message * * @return the session ID */ public long getSessionId() { return this.sessionId; } /** * Sets the session ID for this encrypted message * * @param sessionId * the session ID to set */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.1K bytes - Viewed (0) -
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) -
tensorflow/c/c_api_internal.h
// The keys of this map are all the active sessions using this graph. Each // value records whether the graph has been mutated since the corresponding // session has been run (this is detected in RecordMutation function). If the // string is empty, no mutation has occurred. Otherwise the string is a // description of the mutation suitable for returning to the user. // // Sessions are added to this map in TF_NewSession, and removed in
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Sat May 13 00:49:12 UTC 2023 - 7.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
} /** * Gets the session ID associated with this crawling session. * * @return the session ID, or null if not specified */ public String getSessionId() { return sessionId; } /** * Sets the session ID associated with this crawling session. * * @param sessionId the session ID to set */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
/** * Returns the session ID. * @return The session ID. */ public String getSessionId() { return sessionId; } /** * Sets the session ID. * @param sessionId The session ID. */ public void setSessionId(final String sessionId) { this.sessionId = sessionId; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.9K 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) -
src/main/java/jcifs/util/SecureKeyManager.java
keyStore.setEntry("smb.session." + sessionId, keyEntry, protection); } catch (Exception e) { log.warn("Failed to store key in KeyStore: {}", e.getMessage()); } } log.debug("Stored session key for session: {}", sessionId); } /** * Retrieve a session key * * @param sessionId unique session identifier
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K 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)