Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,374 for messages (0.05 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AccessTimeoutTarget.java

     * It is used to interrupt a running thread when a timeout occurs.
     * The class provides methods to interrupt the thread and stop the timeout target.
     *
     * <p>
     * The class uses a logger to log debug messages.
     * It also uses an AtomicBoolean to track whether the thread is running.
     * </p>
     *
     * <p>
     * The expired method is called when a timeout occurs.
     * It interrupts the running thread up to a maximum number of times.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String ldapMemberofAttribute;
    
        /**
         * Notification message displayed on the login page.
         * This message is shown to users on the authentication page.
         */
        @Size(max = 3000)
        public String notificationLogin;
    
        /**
         * Notification message displayed on the search top page.
         * This message is shown to users on the main search page.
         */
        @Size(max = 3000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    - To run `make test` and `make build` completes.
    
    ### Commit changes
    
    After verification, commit your changes. This is a [great post](https://chris.beams.io/posts/git-commit/) on how to write useful commit messages
    
    ```
    git commit -am 'Add some feature'
    ```
    
    ### Push to the branch
    
    Push your locally committed changes to the remote origin (your fork)
    
    ```
    git push origin my-new-feature
    ```
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 05 18:35:53 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java

     */
    public class CrawlerSystemExceptionTest extends PlainTestCase {
    
        /**
         * Test constructor with message only
         */
        public void test_constructor_withMessage() {
            String message = "Test error message";
            CrawlerSystemException exception = new CrawlerSystemException(message);
    
            assertNotNull(exception);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 20K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java

         * @param body the general settings data to update
         * @return JSON response with update status
         */
        @Execute
        public JsonResponse<ApiResult> put$index(final EditBody body) {
            validateApi(body, messages -> {});
            final EditBody newBody = new EditBody();
            AdminGeneralAction.updateForm(fessConfig, newBody);
            BeanUtil.copyBeanToBean(body, newBody, CopyOptions::excludeNull);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractListIndexOfTester.java

      /** Override to call {@code indexOf()} or {@code lastIndexOf()}. */
      protected abstract int find(@Nullable Object o);
    
      /** Override to return "indexOf" or "lastIndexOf()" for use in failure messages. */
      protected abstract String getMethodName();
    
      @CollectionSize.Require(absent = ZERO)
      public void testFind_yes() {
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            // Then - Verify encrypted message structure
            assertNotNull(encrypted, "Encrypted message should not be null");
            assertTrue(encrypted.length > plaintext.length, "Encrypted message should be larger than plaintext");
    
            // Verify transform header is present (first 52 bytes)
            assertTrue(encrypted.length >= 52, "Encrypted message should include transform header");
    
            // When - Decrypt
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/WinError.java

                ERROR_PIPE_NOT_CONNECTED, ERROR_MORE_DATA, ERROR_SERVICE_NOT_INSTALLED, ERROR_NO_BROWSER_SERVERS_FOUND, };
    
        /** Array of Windows error messages corresponding to WINERR_CODES */
        String[] WINERR_MESSAGES = { "The operation completed successfully.", "Access is denied.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/WinError.java

                ERROR_PIPE_NOT_CONNECTED, ERROR_MORE_DATA, ERROR_NO_BROWSER_SERVERS_FOUND, };
    
        /** Array of Windows error messages corresponding to WINERR_CODES */
        String[] WINERR_MESSAGES = { "The operation completed successfully.", "Access is denied.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java

            assertNotNull(systemErrorResult);
        }
    
        // Test API result with messages
        public void test_apiResultWithMessages() {
            String testMessage = "Test error message";
            ApiResult.ApiErrorResponse errorResponse = new ApiResult.ApiErrorResponse();
            errorResponse.message(testMessage);
            errorResponse.status(Status.BAD_REQUEST);
            ApiResult result = errorResponse.result();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top