- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 153 for sessionIds (0.06 sec)
-
src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo.jsp
</c:set> <la:text styleId="sessionIdSearchBtn" property="sessionId" styleClass="form-control" placeholder="${ph_session_id}"></la:text> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
SmbSession ssn; long now; ListIterator iter = sessions.listIterator(); while (iter.hasNext()) { ssn = (SmbSession) iter.next(); if (ssn.matches(auth)) { ssn.auth = auth; return ssn; } } /* logoff old sessions */ if (SO_TIMEOUT > 0 && sessionExpiration < (now = System.currentTimeMillis())) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
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 assertTrue(suggestJob.sessionId.matches("[a-zA-Z]+")); }
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/SuggestCreator.java
*/ protected static class Options { /** The session ID for the suggest creation process. */ @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID") protected String sessionId; /** The name of the suggest creator instance. */ @Option(name = "-n", aliases = "--name", metaVar = "name", usage = "Name") protected String name;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
String result = pythonJob.execute(); assertNotNull(result); assertTrue(result.contains("Session Id:")); assertNotNull(pythonJob.sessionId); assertTrue(pythonJob.sessionId.length() >= 10); // The test doesn't actually call the real process since ServletContext.getRealPath returns null in test // and causes an exception which is caught and added to result
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/org/codelibs/fess/app/web/admin/crawlinginfo/SearchForm.java
/** * Default constructor for SearchForm. */ public SearchForm() { } /** * The session ID field for searching crawling information. */ public String sessionId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 952 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
return 0; } /** * Deletes all documents associated with the specified session ID. * * @param sessionId the session ID to delete documents for * @return the number of documents that were deleted */ public long deleteBySessionId(final String sessionId) { final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
}; ComponentUtil.register(client, "searchEngineClient"); final String sessionId = "session1"; assertEquals(1, indexingHelper.deleteBySessionId(sessionId)); assertEquals("fess.update", resultMap.get("index")); assertEquals("segment", resultMap.get("field")); assertEquals(sessionId, resultMap.get("value")); } public void test_deleteByConfigId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
docs/es/docs/advanced/testing-websockets.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 457 bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp
href="${fe:url('/admin/searchlist/search')}?q=segment:${f:u(sessionId)}" </c:if> >${f:h(sessionId)}</a> <la:hidden property="sessionId"/></td> </tr> <c:forEach var="info" items="${crawlingInfoParamItems}">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 10.1K bytes - Viewed (0)