- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 3,983 for Session (0.09 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
/** * Resolves the highest available version of a version range. * The returned version is only dependent on the configured repositories and their contents. * The supplied request may also refer to a single concrete version rather than a version range. * In this case though, the result contains simply the (parsed) input version, regardless of the * repositories and their contents. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbTreeTest.java
} @Test void testEquals() { SmbTree tree1 = new SmbTree(session, "testShare", "testService"); SmbTree tree2 = new SmbTree(session, "testShare", "testService"); SmbTree tree3 = new SmbTree(session, "otherShare", "testService"); SmbTree tree4 = new SmbTree(session, "testShare", "otherService"); // Test equal trees (same share and service)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlQueueService.java
* Provides methods for adding, retrieving, and managing URLs within a crawling session. * * @param <QUEUE> the type of URL queue */ public interface UrlQueueService<QUEUE extends UrlQueue<?>> { /** * Updates the session ID. * * @param oldSessionId The old session ID. * @param newSessionId The new session ID. */ void updateSessionId(String oldSessionId, String newSessionId);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.6K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
} } } return ret; } /** * Generates URL queue entries for a new session based on access results from a previous session. * * @param previousSessionId The previous session ID. * @param sessionId The new session ID. */ @Override public void generateUrlQueues(final String previousSessionId, final String sessionId) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
return null; }); } private OptionalThing<HttpSession> getSession() { final HttpSession session = request.getSession(false); if (session != null) { return OptionalEntity.of(session); } return OptionalEntity.empty(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SimpleMemoryManagementTest.java
// Session starts with usage count > 0, so acquire/release cycles maintain usage assertTrue(session.isInUse(), "Session should be in use initially"); // Test acquire/release cycles (session remains in use due to initial transport acquire) for (int i = 0; i < 3; i++) { session.acquire(); assertTrue(session.isInUse(), "Session should be in use after acquire " + i); session.release();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/SmbSession.java
/** * Unwraps this session to the specified type, allowing access to implementation-specific functionality. * * @param <T> the type to unwrap to * @param type the class of the type to unwrap to * @return session instance with the given type */ <T extends SmbSession> T unwrap(Class<T> type); /** * Returns the CIFS context that this session is attached to. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java
MavenSession msession = new MavenSession(getContainer(), session, mavenExecutionRequest, new DefaultMavenExecutionResult()); DefaultSession iSession = new DefaultSession( msession, resolverRepositorySystem, null, mavenRepositorySystem, new DefaultLookup(container), null); InternalSession.associate(session, iSession); SessionScope sessionScope = container.lookup(SessionScope.class);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java
assertFalse(java.util.Arrays.equals(salt1, salt2)); // Should be different } @Test @DisplayName("Test session initialization") public void testSessionInitialization() throws CIFSException { String sessionId = "test-session-1"; byte[] salt = preauthService.generatePreauthSalt();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionInternalTest.java
byte[] key = new byte[] { 10, 20 }; when(session.getSessionKey()).thenReturn(key, new byte[0], null); assertArrayEquals(key, session.getSessionKey()); assertArrayEquals(new byte[0], session.getSessionKey()); assertNull(session.getSessionKey()); verify(session, times(3)).getSessionKey(); } // Error propagation: getSessionKey throws CIFSException
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0)