Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 544 for session3 (0.04 sec)

  1. src/test/java/jcifs/internal/CommonServerMessageBlockTest.java

            // Test with various session ID values
            long[] sessionIds = { 0L, 1L, Long.MAX_VALUE, Long.MIN_VALUE, -1L };
    
            for (long sessionId : sessionIds) {
                doNothing().when(messageBlock).setSessionId(sessionId);
                messageBlock.setSessionId(sessionId);
                verify(messageBlock).setSessionId(sessionId);
            }
        }
    
        @Test
        @DisplayName("Test reset method")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        }
    
        /**
         * Gets the session identifier for this message.
         *
         * @return the sessionId
         */
        public long getSessionId() {
            return this.sessionId;
        }
    
        /**
         * @param sessionId
         *            the sessionId to set
         */
        @Override
        public final void setSessionId(final long sessionId) {
            this.sessionId = sessionId;
            if (this.next != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

                context.rotateKeys(newKey, newKey);
            });
        }
    
        @Test
        @DisplayName("Should perform automatic key rotation when session key is provided")
        void testAutomaticKeyRotation() throws Exception {
            // Given - Create context with session key for rotation support
            byte[] sessionKey = new byte[16];
            byte[] preauthHash = new byte[64];
            new SecureRandom().nextBytes(sessionKey);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * under the License.
     */
    
    /**
     * <h2>Maven Core API</h2>
     *
     * <h3>Session</h3>
     *
     * <p>The {@link org.apache.maven.api.Session} interface is the main entry point for Maven operations.
     * It maintains the state of a Maven execution and provides access to all core services and components.
     * Sessions are thread-safe and can be obtained in session-scoped components using the
     * {@link org.apache.maven.api.di.SessionScoped} annotation.</p>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 05 14:29:21 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

        /**
         * Create channel manager
         *
         * @param context CIFS context
         * @param session SMB session
         */
        public ChannelManager(CIFSContext context, SmbSession session) {
            this.context = context;
            this.session = session;
            this.channels = new ConcurrentHashMap<>();
            this.localInterfaces = new ArrayList<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  7. 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)
  8. src/test/java/jcifs/smb/SmbTransportImplTest.java

            // Act & Assert
            assertEquals(2222, transport.getResponseTimeout(req));
        }
    
        @Test
        @DisplayName("Basic getters: address, hostName, inflight, sessions")
        void basicGetters() {
            assertEquals(address, transport.getRemoteAddress());
            assertNull(transport.getRemoteHostName(), "tconHostName starts null");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java

            });
            return asJson(new ApiResponse().status(Status.OK).result());
        }
    
        /**
         * Deletes all old crawling info sessions except currently running ones.
         *
         * @return JSON response indicating the deletion status
         */
        // DELETE /api/admin/crawlinginfo/all
        @Execute
        public JsonResponse<ApiResult> delete$all() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. 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)
Back to top