Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 573 for session2 (0.05 sec)

  1. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            assertSame(jobExecutor, execJob.jobExecutor);
            assertSame(execJob, result);
        }
    
        // Test sessionId setter
        public void test_sessionId() {
            String testSessionId = "test-session-123";
            ExecJob result = execJob.sessionId(testSessionId);
            assertEquals(testSessionId, execJob.sessionId);
            assertSame(execJob, result);
        }
    
        // Test logFilePath setter
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K 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. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/SearchForm.java

     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The session ID field for searching crawling information.
         */
        public String sessionId;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 952 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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. docs/sts/client-grants.md

    | *Required*    | *No*                                               |
    
    ### Policy
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top