- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 572 for sessionID (1.7 sec)
-
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) -
src/main/java/jcifs/smb/MultiChannelManager.java
} log.info("Created {} channels for session {}", channelGroup.getChannelCount(), sessionId); return channelGroup; } catch (Exception e) { sessionChannels.remove(sessionId); throw new CIFSException("Failed to create channels for session " + sessionId, e); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsCrawlingInfoCA.java
public void setSessionId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setSessionId_Terms("sessionId", opLambda, null); } public void setSessionId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsCrawlingInfoCA> aggsLambda) { setSessionId_Terms("sessionId", opLambda, aggsLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 31.6K 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/test/java/jcifs/util/SecureKeyManagerTest.java
assertArrayEquals(testKey, rawKey2, "Should still match original"); } @Test public void testRemoveSessionKey() { String sessionId = "test-session-3"; keyManager.storeSessionKey(sessionId, testKey, "AES"); assertTrue(keyManager.hasSessionKey(sessionId), "Key should exist"); keyManager.removeSessionKey(sessionId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
if (sessionId == null) { // create session id final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); sessionId = sdf.format(new Date()); } resultBuf.append("Session Id: ").append(sessionId).append("\n"); resultBuf.append("Web Config Id:"); if (webConfigIds == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
final String sessionId = "session123"; indexUpdater.addFinishedSessionId(sessionId); assertTrue(indexUpdater.finishedSessionIdList.contains(sessionId)); } // Test addFinishedSessionId with multiple sessions public void test_addFinishedSessionId_multiple() { indexUpdater.addFinishedSessionId("session1"); indexUpdater.addFinishedSessionId("session2");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K 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/main/java/jcifs/audit/SecurityAuditLogger.java
context.put("thread", Thread.currentThread().getName()); context.put("threadId", Thread.currentThread().getId()); String sessionId = MDC.get("sessionId"); if (sessionId != null) { context.put("sessionId", sessionId); } String userId = MDC.get("userId"); if (userId != null) { context.put("userId", userId); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertSame(jobExecutor, execJob.jobExecutor); assertSame(execJob, result); } // Test sessionId setter public void test_sessionId() { String testSessionId = "test-session-123"; ExecJob result = execJob.sessionId(testSessionId); assertEquals(testSessionId, execJob.sessionId); assertSame(execJob, result); } // Test logFilePath setter
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)