- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 149 for session_id (0.05 sec)
-
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
} @Test @DisplayName("Unspecified SessionId should be 0xFFFFFFFFFFFFFFFF") void testUnspecifiedSessionId() { assertEquals(0xFFFFFFFFFFFFFFFFL, Smb2Constants.UNSPECIFIED_SESSIONID, "Unspecified SessionId must be 0xFFFFFFFFFFFFFFFF"); assertEquals(-1L, Smb2Constants.UNSPECIFIED_SESSIONID, "Unspecified SessionId as signed long should be -1"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K 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/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)