Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 392 for merror (0.04 seconds)

  1. src/main/webapp/WEB-INF/view/chat/chat.jsp

    						</div>
    					</div>
    					<div class="card-footer">
    						<div id="errorBanner" class="error-banner d-none" role="alert">
    							<div class="error-banner-content">
    								<i class="fa fa-exclamation-triangle me-2" aria-hidden="true"></i>
    								<span class="error-message"></span>
    							</div>
    							<button type="button" class="error-banner-retry btn btn-sm btn-outline-light">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         * Pre-processes API requests by checking access authorization before executing the action.
         * If access is not allowed, returns an unauthorized error response.
         *
         * @param runtime the action runtime context containing request information
         * @return ActionResponse with unauthorized error if access denied, otherwise delegates to parent
         */
        @Override
        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  3. ADDING_NEW_LANGUAGE.md

    labels.search=Search
    labels.login=Login
    labels.logout=Logout
    # ... approximately 1,056 more entries
    ```
    
    **`fess_message_[locale].properties`** contains system messages such as:
    ```properties
    errors.required={0} is required.
    errors.minlength={0} cannot be less than {1}.
    success.login=Logged in successfully.
    # ... approximately 200 more entries
    ```
    
    ### 3. Update Configuration File
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 11:36:30 GMT 2025
    - 10.4K bytes
    - Click Count (1)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                    warnings << "Return nullability changed from nullable to null-unmarked"
                }
            }
    
            if (!errors.isEmpty()) {
                def changes = errors + warnings
                return acceptOrReject(member, changes, Violation.error(member, changes.join(" ")))
            }
            if (!warnings.isEmpty()) {
                return Violation.warning(member, warnings.join(" "))
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Oct 27 09:26:32 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 10000)
        public String googleChatWebhookUrls;
    
        /** Enable or disable log notification for ERROR/WARN logs. */
        @Size(max = 10)
        public String logNotificationEnabled;
    
        /** Log notification level (e.g. ERROR, WARN, INFO). */
        @Size(max = 10)
        public String logNotificationLevel;
    
        /** LDAP security authentication type. */
        @Size(max = 1000)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  6. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

        }
    
        private
        fun String.assertContains(text: String) {
            assertTrue(contains(text)) {
                "Did not find expected error message in $this"
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 00:16:44 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                if (logger.isDebugEnabled()) {
                    logger.error("IndexUpdater is terminated.", e);
                } else if (logger.isInfoEnabled()) {
                    logger.info("IndexUpdater is terminated.");
                }
                forceStop();
            } catch (final Throwable t) {
                if (ComponentUtil.available()) {
                    logger.error("IndexUpdater is terminated.", t);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                return "errors.password_length";
            }
    
            if (fessConfig.isPasswordRequireUppercase() && !containsUppercase(password)) {
                return "errors.password_no_uppercase";
            }
    
            if (fessConfig.isPasswordRequireLowercase() && !containsLowercase(password)) {
                return "errors.password_no_lowercase";
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  9. src/main/resources/fess_message_ko.properties

    errors.failed_to_process_sso_request=요청을 처리하지 못했습니다: {0}
    
    errors.property_required={0}은(는) 필수입니다.
    errors.property_type_integer={0}은(는) 정수여야 합니다.
    errors.property_type_long={0}은(는) long이어야 합니다.
    errors.property_type_float={0}은(는) float이어야 합니다.
    errors.property_type_double={0}은(는) double이어야 합니다.
    errors.property_type_date={0}은(는) 날짜여야 합니다.
    
    errors.storage_file_upload_failure={0} 업로드에 실패했습니다.
    errors.storage_file_not_found=대상 파일이 스토리지에 없습니다.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 15.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

         * @param obj the object to serialize
         * @return the serialized object as a byte array
         * @throws IllegalArgumentException if an unsupported serializer type is configured
         * @throws IORuntimeException if an I/O error occurs during serialization
         */
        public byte[] fromObjectToBinary(final Object obj) {
            final String serializer = getSerializerType();
            return switch (serializer) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:54:09 GMT 2026
    - 10.5K bytes
    - Click Count (3)
Back to Top