- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 645 for session_ (0.57 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
/** * Test multiple initializations with same session ID */ public void test_multipleInit_sameSessionId() { String sessionId = "test-session-017"; // First initialization urlFilter.init(sessionId); urlFilter.addInclude("https://first.com/.*"); // Second initialization with same session ID urlFilter.init(sessionId);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/transformation/AbstractRepositoryTestCase.java
DefaultMavenExecutionRequest request = new DefaultMavenExecutionRequest(); MavenSession mavenSession = new MavenSession(rsession, request, new DefaultMavenExecutionResult()); DefaultSession session = new DefaultSession(mavenSession, null, null, null, new SimpleLookup(getSessionServices()), null); InternalSession.associate(rsession, session);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
final String oldSessionId = crawlerContext.sessionId; urlQueueService.updateSessionId(crawlerContext.sessionId, sessionId); crawlerContext.sessionId = sessionId; if (logger.isInfoEnabled()) { logger.info("Updated crawler session ID: oldSessionId={}, newSessionId={}", oldSessionId, sessionId); } }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 17K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
/** * Returns the count of access results for the given session ID. * * @param sessionId the session ID * @return the count of access results */ int getCount(String sessionId); /** * Deletes access results for the given session ID. * * @param sessionId the session ID */ void delete(String sessionId); /** * Deletes all access results. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.7K bytes - Viewed (0) -
tensorflow/c/c_api_internal.h
// The keys of this map are all the active sessions using this graph. Each // value records whether the graph has been mutated since the corresponding // session has been run (this is detected in RecordMutation function). If the // string is empty, no mutation has occurred. Otherwise the string is a // description of the mutation suitable for returning to the user. // // Sessions are added to this map in TF_NewSession, and removed in
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Sat May 13 00:49:12 UTC 2023 - 7.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/SessionReuseTest.kt
// Force reuse. This appears flaky (30% of the time) even though sessions are reused. // javax.net.ssl.SSLHandshakeException: No new session is allowed and no existing // session can be resumed // // Report https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8264944 // Sessions improvement https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8245576Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 5.9K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
} /** * Gets the session ID associated with this encrypted message * * @return the session ID */ public long getSessionId() { return this.sessionId; } /** * Sets the session ID for this encrypted message * * @param sessionId * the session ID to set */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
} } } /** * Removes the path mapping list for a session. * * @param sessionId the session ID */ public void removePathMappingList(final String sessionId) { pathMappingMap.remove(sessionId); } /** * Gets the path mapping list for a session. * * @param sessionId the session IDRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java
projectBuilds.add(createProjectBuild(A, session, segment)); projectBuilds.add(createProjectBuild(B, session, segment)); projectBuilds.add(createProjectBuild(C, session, segment)); projectBuilds.add(createProjectBuild(X, session, segment)); projectBuilds.add(createProjectBuild(Y, session, segment)); projectBuilds.add(createProjectBuild(Z, session, segment)); return projectBuilds; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
*/ @Nonnull static VersionRangeResolverRequest build( @Nonnull Session session, @Nonnull ArtifactCoordinates artifactCoordinates) { return build(session, artifactCoordinates, null, null); } /** * Creates a version range resolver request. * * @param session the session to use, must not be {@code null}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 10.4K bytes - Viewed (0)