Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for _confirmation (0.11 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java

         */
        @Required
        @Size(max = 100)
        public String name;
    
        /**
         * The password for the user.
         */
        @Size(max = 100)
        public String password;
    
        /**
         * The password confirmation field.
         */
        @Size(max = 100)
        public String confirmPassword;
    
        /**
         * The attributes map for the user.
         */
        public Map<String, String> attributes = new HashMap<>();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                }, this::asListHtml);
            }
        }
    
        /**
         * Validates the password and confirmation fields in the form for user creation and update.
         *
         * @param form the form containing password and confirmation fields
         * @param validationErrorLambda callback to report validation errors
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

        override fun drainTo(
          sink: MutableCollection<in T>,
          maxElements: Int,
        ) = error("unsupported")
      }
    
      /** Returns true if no tasks have been scheduled. This runs the coordinator for confirmation. */
      fun isIdle() = taskRunner.activeQueues().isEmpty()
    
      override fun close() {
        tasksExecutor.shutdownNow()
      }
    
      companion object {
        var instance = 0
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

            }
            return redirect(getClass());
        }
    
        /**
         * Handles password change for the current user.
         *
         * @param form the password form containing new password and confirmation
         * @return the HTML response after password change attempt
         */
        @Execute
        public HtmlResponse changePassword(final PasswordForm form) {
            final VaErrorHook toIndexPage = () -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_es.properties

    errors.invalid_str_is_included = {1} no es válido en {0}.
    errors.blank_password = Se requiere contraseña.
    errors.invalid_confirm_password = La confirmación de la contraseña no coincide.
    errors.cannot_delete_doc_because_of_running = El rastreador se está ejecutando. No se puede eliminar el documento.
    errors.failed_to_delete_doc_in_admin = No se pudo eliminar el documento.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_message.properties

    errors.invalid_str_is_included = {1} is invalid for {0}.
    errors.blank_password = Password is required.
    errors.invalid_confirm_password = Does not match a confirmation password.
    errors.cannot_delete_doc_because_of_running = A crawler is running. You cannot delete documents.
    errors.failed_to_delete_doc_in_admin = Failed to delete a document.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    errors.invalid_str_is_included = {1} is invalid for {0}.
    errors.blank_password = Password is required.
    errors.invalid_confirm_password = Does not match a confirmation password.
    errors.cannot_delete_doc_because_of_running = A crawler is running. You cannot delete documents.
    errors.failed_to_delete_doc_in_admin = Failed to delete a document.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_fr.properties

    errors.invalid_str_is_included = {1} n'est pas valide pour {0}.
    errors.blank_password = Le mot de passe est requis.
    errors.invalid_confirm_password = Ne correspond pas à un mot de passe de confirmation.
    errors.cannot_delete_doc_because_of_running = Un robot d'exploration est en cours d'exécution. Vous ne pouvez pas supprimer de documents.
    errors.failed_to_delete_doc_in_admin = Échec de la suppression d'un document.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Password is required. */
        public static final String ERRORS_blank_password = "{errors.blank_password}";
    
        /** The key of the message: Does not match a confirmation password. */
        public static final String ERRORS_invalid_confirm_password = "{errors.invalid_confirm_password}";
    
        /** The key of the message: A crawler is running. You cannot delete documents. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
Back to top