Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,199 for Messages (0.04 sec)

  1. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

                    logger.debug("{}:{}", query, boost);
                }
                return convertFuzzyQuery(context, fuzzyQuery, boost);
            }
            throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java

        /**
         *
         * @return next chained message
         */
        @Override
        CommonServerMessageBlockRequest getNext();
    
        /**
         * Splits this request for processing.
         *
         * @return the following message
         */
        CommonServerMessageBlockRequest split();
    
        /**
         * Gets the size of this message.
         *
         * @return the size of this message
         */
        int size();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_pl.properties

    constraints.Range.message = {item} musi być w zakresie od {min} do {max}.
    constraints.SafeHtml.message = {item} zawiera niebezpieczną zawartość HTML.
    constraints.ScriptAssert.message = Wyrażenie skryptowe "{script}" nie jest prawdziwe.
    constraints.URL.message = {item} nie jest prawidłowym adresem URL.
    constraints.Required.message = {item} jest wymagane.
    constraints.TypeInteger.message = {item} musi być liczbą.
    constraints.TypeLong.message = {item} musi być liczbą.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            public ApiErrorResponse message(final String message) {
                this.message = message;
                return this;
            }
    
            /**
             * Sets the error message from validation messages.
             * @param validationMessagesLambda Lambda function to process validation messages.
             * @return This ApiErrorResponse instance.
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java

        /**
         * Unicode encoding used for NTLM messages.
         */
        protected static final String UNI_ENCODING = "UTF-16LE";
    
        private int flags;
    
        /**
         * Returns the flags currently in use for this message.
         *
         * @return An <code>int</code> containing the flags in use for this
         * message.
         */
        public int getFlags() {
            return flags;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java

     * allowing the error page to display relevant information and preserve search context.
     */
    public class ErrorForm {
    
        /** Map of form fields and their validation error messages */
        public Map<String, String[]> fields = new HashMap<>();
    
        /** Search query parameter that caused the error */
        public String q;
    
        /** URL parameter associated with the error */
        public String url;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/Response.java

        /**
         * Gets the error status code.
         *
         * @return status code
         */
        int getErrorCode();
    
        /**
         * Sets the message ID.
         *
         * @param k the message ID to set
         */
        void setMid(long k);
    
        /**
         * Gets the message ID.
         *
         * @return mid
         */
        long getMid();
    
        /**
         * Verifies the signature of this response.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

                }
                if ("favorite_log".equals(name)) {
                    return writeNdjsonResponse(id, getFavoriteLogNdjsonWriteCall());
                }
            }
    
            throwValidationErrorApi(messages -> messages.addErrorsCouldNotFindBackupIndex(GLOBAL));
            return StreamResponse.asEmptyBody(); // no-op
        }
    
        private StreamResponse writeNdjsonResponse(final String id, final Consumer<Writer> writeCall) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java

                    logger.debug("{}:{}", query, boost);
                }
                return convertWildcardQuery(context, wildcardQuery, boost);
            }
            throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java

         */
        public SearchEngineClientException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new SearchEngineClientException with the specified message.
         *
         * @param message the detail message explaining the exception
         */
        public SearchEngineClientException(final String message) {
            super(message);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top