- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 641 for session2 (0.04 sec)
-
src/test/java/jcifs/util/SecureKeyManagerTest.java
assertArrayEquals(testKey, rawKey2, "Should still match original"); } @Test public void testRemoveSessionKey() { String sessionId = "test-session-3"; keyManager.storeSessionKey(sessionId, testKey, "AES"); assertTrue(keyManager.hasSessionKey(sessionId), "Key should exist"); keyManager.removeSessionKey(sessionId);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
} InternalSession iSession = InternalSession.from(configuration.getRepositorySession()); InternalMavenSession mSession = InternalMavenSession.from(iSession); MavenSession session = mSession.getMavenSession(); session.setProjects(projects); session.setAllProjects(session.getProjects()); return session; } protected void initRepoSession(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 12.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
public void delete(final String sessionId) { dataHelper.deleteAccessResultMap(sessionId); } /** * Deletes all access results from all sessions. */ @Override public void deleteAll() { dataHelper.clearUrlQueueList(); } /** * Gets an access result for the specified session and URL. * * @param sessionId the session ID * @param url the URL
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/model/ModelBuilderTest.java
RepositorySystemSession.CloseableSession rsession = repositorySessionFactory .newRepositorySessionBuilder(mavenRequest) .build(); request.setRepositorySession(rsession); MavenSession msession = new MavenSession(rsession, mavenRequest, new DefaultMavenExecutionResult()); InternalSession session = new DefaultSession( msession, repositorySystem,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 4.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImpl.java
/** * Generates URL queues from a previous session's access results. * @param previousSessionId The previous session ID. * @param sessionId The current session ID. */ @Override public void generateUrlQueues(final String previousSessionId, final String sessionId) { final Queue<UrlQueueImpl<Long>> urlQueueList = dataHelper.getUrlQueueList(sessionId);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
} /** * Extracts the canonical session ID by removing any suffix after the first hyphen. * If the session ID contains a hyphen, returns the portion before the first hyphen. * Otherwise, returns the original session ID. * * @param sessionId the session ID to process * @return the canonical session ID (portion before first hyphen, or original if no hyphen) */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
} log.info("Created {} channels for session {}", channelGroup.getChannelCount(), sessionId); return channelGroup; } catch (Exception e) { sessionChannels.remove(sessionId); throw new CIFSException("Failed to create channels for session " + sessionId, e); } } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
tensorflow/c/c_test_util.cc
return names; } CSession::CSession(TF_Graph* graph, TF_Status* s, bool use_XLA) { TF_SessionOptions* opts = TF_NewSessionOptions(); TF_EnableXLACompilation(opts, use_XLA); session_ = TF_NewSession(graph, opts, s); TF_DeleteSessionOptions(opts); } CSession::CSession(TF_Session* session) : session_(session) {} CSession::~CSession() { TF_Status* s = TF_NewStatus();Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Sat Oct 04 05:55:32 UTC 2025 - 17.8K bytes - Viewed (1) -
tensorflow/c/c_test_util.h
// Returns a sorted vector of names contained in `grad_def` std::vector<string> GetFuncNames(const tensorflow::GraphDef& graph_def); class CSession { public: CSession(TF_Graph* graph, TF_Status* s, bool use_XLA = false); explicit CSession(TF_Session* session); ~CSession(); void SetInputs(std::vector<std::pair<TF_Operation*, TF_Tensor*>> inputs); void SetOutputs(std::initializer_list<TF_Operation*> outputs);
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Thu Aug 09 01:06:53 UTC 2018 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
* Removes URL filters, URL queues, and access result data for the session. * * @param sessionId the session ID whose data should be deleted */ private void deleteBySessionId(final String sessionId) { try { urlFilterService.delete(sessionId); } catch (final Exception e) { logger.warn("Failed to delete UrlFilter: sessionId={}", sessionId, e);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 32.9K bytes - Viewed (0)