- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 149 for jsessionid (0.04 sec)
-
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
this.password = null; } // Also remove from secure key manager if we have a session if (this.sessionId != null) { keyManager.removeSessionKey(this.sessionId); this.sessionId = null; } } /** * Check if the authentication has expired based on TTL * * @return true if expired, false otherwise
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
* * @return the session identifier */ String getSessionId(); /** * Sets the session identifier. * * @param sessionId the session identifier */ void setSessionId(String sessionId); /** * Returns the rule identifier. * * @return the rule identifier */ String getRuleId(); /** * Sets the rule identifier.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java
* * @return the session ID as a String. */ String getSessionId(); /** * Sets the session ID for the URL queue. * * @param sessionId the session ID to set */ void setSessionId(String sessionId); /** * Retrieves the HTTP method used for the URL in the queue. * * @return the HTTP method as a String. */ String getMethod(); /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
uq.setParentUrl(url); uq.setSessionId(crawlerContext.sessionId); uq.setUrl(d.getUrl()); uq.setWeight(d.getWeight()); return uq; }) .collect(Collectors.toList()); urlQueueService.offerAll(crawlerContext.sessionId, childList); } /** * Stores a single child URL to the crawling queue.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/SearchBody.java
* Extends BaseSearchBody with crawling information-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The crawling session ID to search for. */ public String sessionId; /** * Default constructor for SearchBody. */ public SearchBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.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/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/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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
server.start(); final String url = "http://localhost:7070/hoge.html"; try { final CrawlerContext crawlerContext = new CrawlerContext(); final String sessionId = "id1"; urlFilter.init(sessionId); crawlerContext.setUrlFilter(urlFilter); CrawlingParameterUtil.setCrawlerContext(crawlerContext); httpClient.init(); httpClient.processRobotsTxt(url);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K bytes - Viewed (0)