- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 257 for sessionID (1.04 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/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/opensearch/config/bsentity/BsCrawlingInfo.java
this.name = value; } public String getSessionId() { checkSpecifiedProperty("sessionId"); return convertEmptyToNull(sessionId); } public void setSessionId(String value) { registerModifiedProperty("sessionId"); this.sessionId = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.3K 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) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfo.java
private static final long serialVersionUID = 1L; private List<CrawlingInfoParam> crawlingInfoParamList; public CrawlingInfo() { } public CrawlingInfo(final String sessionId) { setSessionId(sessionId); } public String getId() { return asDocMeta().id(); } public void setId(final String id) { asDocMeta().id(id); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
} resultBuf.append("Session Id: ").append(sessionId).append("\n"); if (jobExecutor != null) { jobExecutor.addShutdownListener(() -> ComponentUtil.getProcessHelper().destroyProcess(sessionId)); } final TimeoutTask timeoutTask = createTimeoutTask(); try { executePython(); } catch (final Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
cmd/ftp-server.go
// Print implement Logger func (log *minioLogger) Print(sessionID string, message any) { if serverDebugLog { fmt.Printf("%s %s\n", sessionID, message) } } // Printf implement Logger func (log *minioLogger) Printf(sessionID string, format string, v ...any) { if serverDebugLog { if sessionID != "" { fmt.Printf("%s %s\n", sessionID, fmt.Sprintf(format, v...)) } else { fmt.Printf(format+"\n", v...)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.2K 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/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
} @Test @DisplayName("Test session ID generation") void testSessionIdGeneration() throws Exception { authenticator = new NtlmPasswordAuthenticator("DOMAIN", "username", "password"); // Get the sessionId field using reflection Field sessionIdField = NtlmPasswordAuthenticator.class.getDeclaredField("sessionId"); sessionIdField.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.5K 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)