Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 640 for sessions (0.07 sec)

  1. CHANGELOG/CHANGELOG-1.24.md

        - [Am I vulnerable?](#am-i-vulnerable)
          - [Affected Versions](#affected-versions)
        - [How do I mitigate this vulnerability?](#how-do-i-mitigate-this-vulnerability)
          - [Fixed Versions](#fixed-versions)
        - [Detection](#detection)
          - [Additional Details](#additional-details)
          - [Acknowledgements](#acknowledgements)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

            }
            return 0;
        }
    
        /**
         * Deletes all documents associated with the specified session ID.
         *
         * @param sessionId the session ID to delete documents for
         * @return the number of documents that were deleted
         */
        public long deleteBySessionId(final String sessionId) {
            final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * synchronization of the project's artifact state.
         *
         * @param session the current build session
         * @param project the project to attach the artifact to
         * @param path the path to the artifact file
         */
        default void attachArtifact(@Nonnull Session session, @Nonnull Project project, @Nonnull Path path) {
            String name = path.getFileName().toString();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:29:13 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java

        }
    
        @Test
        @DisplayName("Test session ID generation")
        void testSessionIdGeneration() throws Exception {
            authenticator = new NtlmPasswordAuthenticator("DOMAIN", "username", "password");
    
            // Get the sessionId field using reflection
            Field sessionIdField = NtlmPasswordAuthenticator.class.getDeclaredField("sessionId");
            sessionIdField.setAccessible(true);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/ntlmssp/Type3MessageTest.java

            // Create a mock context with LanManCompatibility level 0 or 1 to test extended session security
            CIFSContext mockCtx = createMockContextWithLanManCompat(1);
            Type3Message type3 = new Type3Message(mockCtx, type2, null, "password", "DOMAIN", "user", "WORKSTATION", flags);
    
            // Then
            // Master key should always be generated with extended session security or NTLMv2
            assertNotNull(type3.getMasterKey());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  6. LICENSE

    These requirements apply to the modified work as a whole.  If
    identifiable sections of that work are not derived from the Library,
    and can be reasonably considered independent and separate works in
    themselves, then this License, and its terms, do not apply to those
    sections when you distribute them as separate works.  But when you
    distribute the same sections as part of a whole which is a work based
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  7. docs/smb3-features/01-smb3-lease-design.md

        if (msg instanceof Smb2LeaseBreakNotification) {
            Smb2LeaseBreakNotification breakNotif = (Smb2LeaseBreakNotification) msg;
            
            // Get lease manager from session
            LeaseManager leaseManager = session.getLeaseManager();
            
            // Handle the lease break
            leaseManager.handleLeaseBreak(
                breakNotif.getLeaseKey(),
                breakNotif.getNewLeaseState()
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final String sessionId = "session1";
    
            assertEquals(1, indexingHelper.deleteBySessionId(sessionId));
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals("segment", resultMap.get("field"));
            assertEquals(sessionId, resultMap.get("value"));
        }
    
        public void test_deleteByConfigId() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

         * Creates a new ProjectBuilderRequest with the specified session and source.
         *
         * @param session the Maven session
         * @param source the source of the project to build
         * @return a new ProjectBuilderRequest
         * @throws NullPointerException if session or source is null
         */
        @Nonnull
        static ProjectBuilderRequest build(@Nonnull Session session, @Nonnull Source source) {
            return builder()
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  10. 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)
Back to top