- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 149 for jsessionid (0.06 sec)
-
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
* * @param parentUrl the parent URL to get encoding for * @param sessionId the session ID for the crawling session * @return the character encoding, or null if not found */ default String getParentEncoding(final String parentUrl, final String sessionId) { final String key = sessionId + ":" + parentUrl; String enc = parentEncodingMap.get(key); if (enc != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
} /** * Deletes all URL filters for the specified session. * * @param sessionId The session ID. */ @Override public void delete(final String sessionId) { deleteBySessionId(sessionId); includeFilterCache.invalidate(sessionId); excludeFilterCache.invalidate(sessionId); } /** * Gets the list of include URL patterns for the specified session.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
String result = crawlJob.execute(); assertNotNull(crawlJob.sessionId); // Check format: yyyyMMddHHmmss assertEquals(14, crawlJob.sessionId.length()); assertTrue(crawlJob.sessionId.matches("\\d{14}")); assertTrue(result.contains("Session Id: " + crawlJob.sessionId)); } // Test with negative max crawler processes
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlFilterService.java
* * @param sessionId the ID of the session for which the URL filter is being added * @param url the URL to be included in the filter list */ void addIncludeUrlFilter(String sessionId, String url); /** * Adds a list of URLs to the include filter for a given session. * * @param sessionId the ID of the session for which the URLs should be included
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
*/ public static class ChannelGroup { private final String sessionId; private final List<ChannelInfo> channels = new CopyOnWriteArrayList<>(); private final AtomicInteger roundRobinIndex = new AtomicInteger(0); private volatile ChannelInfo primaryChannel; public ChannelGroup(String sessionId) { this.sessionId = sessionId; } public String getSessionId() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/SessionReuseTest.kt
} else { // With TLSv1.2 it is really JDK specific. // assertEquals(sessionIds[0], sessionIds[1]) // assertThat(directSessionIds).contains(sessionIds[0], sessionIds[1]) } assertThat(sessionIds[0]).isNotEmpty() } } private fun enableTls() { client = client .newBuilder() .sslSocketFactory(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 6K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
*/ 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. */ @Option(name = "-n", aliases = "--name", metaVar = "name", usage = "Name")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/JSSETest.kt
assertThat(it.protocol).isEqualTo(Protocol.HTTP_2) assertThat(it.handshake!!.tlsVersion).isEqualTo(TlsVersion.TLS_1_3) } assertEquals(2, sessionIds.size) assertNotEquals(sessionIds[0], sessionIds[1]) assertThat(sessionIds[0]).isNotEmpty() } private fun enableTls() { client = client .newBuilder() .sslSocketFactory(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
// Get the sessionId field using reflection Field sessionIdField = NtlmPasswordAuthenticator.class.getDeclaredField("sessionId"); sessionIdField.setAccessible(true); // Initially sessionId should be null String initialSessionId = (String) sessionIdField.get(authenticator); assertNull(initialSessionId, "SessionId should initially be null"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.5K bytes - Viewed (0)