Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 119 for msword (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java

        /** The suggest helper for managing suggest functionality. */
        @Resource
        protected SuggestHelper suggestHelper;
    
        /**
         * Retrieves suggest statistics including word counts.
         *
         * @return JSON response containing suggest statistics
         */
        // GET /api/admin/suggest
        @Execute
        public JsonResponse<ApiResult> get$index() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/BaseApiManager.java

        /**
         * Enumeration of supported API format types.
         */
        protected enum FormatType {
            /** Search API format. */
            SEARCH,
            /** Label API format. */
            LABEL,
            /** Popular word API format. */
            POPULARWORD,
            /** Favorite API format. */
            FAVORITE,
            /** Favorites API format. */
            FAVORITES,
            /** Ping API format. */
            PING,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/RelationshipTester.java

     * equivalence classes.
     *
     * @author Gregory Kick
     */
    @GwtCompatible
    @NullMarked
    final class RelationshipTester<T> {
      interface ItemReporter {
        String reportItem(Item<?> item);
      }
    
      /**
       * A word about using {@link Equivalence}, which automatically checks for {@code null} and
       * identical inputs: This sounds like it ought to be a problem here, since the goals of this class
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

        /** The ignore failure type setting. */
        public String ignoreFailureType;
    
        /** The failure count threshold setting. */
        public String failureCountThreshold;
    
        /** The popular word setting. */
        public String popularWord;
    
        /** The CSV file encoding setting. */
        public String csvFileEncoding;
    
        /** The purge search log day setting. */
        public String purgeSearchLogDay;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/help.jsp

    		the end of the term you are searching.
    		<pre>Fess^100</pre>
    	</dd>
    	<dt>Fuzzy</dt>
    	<dd>
    		To do a fuzzy search use the "~" symbol at the end of a single word
    		term. For example to search for a term similar in spelling to "Fess"
    		use the fuzzy search:
    		<pre>Fess~0.5</pre>
    	</dd>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java

         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the Kuromoji user dictionary to be uploaded.
         * This file should be in the Kuromoji user dictionary format containing custom word definitions.
         */
        @Required
        public MultipartFormFile kuromojiFile;
    
        /**
         * Default constructor for UploadForm.
         * Creates a new instance with default values.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java

        }
    
        /** Dictionary identifier */
        @Required
        public String dictId;
    
        /** CRUD operation mode (CREATE, EDIT, etc.) */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** Word or phrase to be protected from analysis */
        @Required
        @Size(max = 1000)
        public String input;
    
        /**
         * Initializes the form with default values for creating a new protected words entry.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Failed to download an elevate word file. */
        public static final String ERRORS_failed_to_download_elevate_file = "{errors.failed_to_download_elevate_file}";
    
        /** The key of the message: Failed to upload an elevate word file. */
        public static final String ERRORS_failed_to_upload_elevate_file = "{errors.failed_to_upload_elevate_file}";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

         *
         * @param id the ID of the scheduled job to start
         * @return JSON response indicating success or failure
         */
        // PUT /api/admin/scheduler/{id}/start
        @Execute(urlPattern = "{}/@word")
        public JsonResponse<ApiResult> put$start(final String id) {
            scheduledJobService.getScheduledJob(id).ifPresent(entity -> {
                if (!entity.isEnabled() || entity.isRunning()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/RelationshipTester.java

     * equivalence classes.
     *
     * @author Gregory Kick
     */
    @GwtCompatible
    @NullMarked
    final class RelationshipTester<T> {
      interface ItemReporter {
        String reportItem(Item<?> item);
      }
    
      /**
       * A word about using {@link Equivalence}, which automatically checks for {@code null} and
       * identical inputs: This sounds like it ought to be a problem here, since the goals of this class
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top