Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 458 for containing (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java

        /**
         * Retrieves boost document rule settings with pagination support.
         *
         * @param body the search body containing pagination and filter parameters
         * @return JSON response containing list of boost document rule configurations
         */
        // GET /api/admin/boostdoc
        // PUT /api/admin/boostdoc
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java

         */
        void destroy();
    
        /**
         * Creates a thumbnail generation task.
         * @param path The path to the source document.
         * @param docMap The document map containing metadata.
         * @return A tuple containing task information.
         */
        Tuple3<String, String, String> createTask(String path, Map<String, Object> docMap);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

        /**
         * Retrieves stopwords dictionary settings with pagination support.
         *
         * @param dictId the dictionary ID
         * @param body the search body containing pagination and filter parameters
         * @return JSON response containing list of stopwords dictionary items
         */
        // GET /api/admin/dict/stopwords/settings/{dictId}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

            return asListHtml();
        }
    
        /**
         * Displays a paginated list of users.
         *
         * @param pageNumber the page number to display (optional)
         * @param form the search form containing filter criteria
         * @return HTML response with the user list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         * Provides database access methods for DataConfig entities.
         */
        @Resource
        protected DataConfigBhv dataConfigBhv;
    
        /**
         * Fess configuration containing application settings.
         * Used to retrieve paging and other configuration parameters.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Creates a new instance of DataConfigService.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java

        /**
         * Retrieves data config settings with pagination support.
         *
         * @param body the search body containing pagination and filter parameters
         * @return JSON response containing list of data config settings
         */
        // GET /api/admin/dataconfig/settings
        // PUT /api/admin/dataconfig/settings
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

         * Retrieve list of character mapping entries for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param body search criteria and paging parameters
         * @return JSON response containing list of mapping entries
         */
        // GET /api/admin/dict/mapping/settings/{dictId}
        @Execute
        public JsonResponse<ApiResult> get$settings(final String dictId, final SearchBody body) {
            body.dictId = dictId;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        }
    
        /**
         * Displays a paginated list of web authentication configurations.
         *
         * @param pageNumber the page number to display (optional)
         * @param form the search form containing filter criteria
         * @return HTML response with the web authentication list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

       * @return an immutable set containing those elements, minus duplicates
       */
      public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet(
          E anElement, E... otherElements) {
        return ImmutableEnumSet.asImmutable(EnumSet.of(anElement, otherElements));
      }
    
      /**
       * Returns an immutable set instance containing the given enum elements. Internally, the returned
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      }
    
      /** Returns an immutable sorted set containing a single element. */
      public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E e1) {
        return new RegularImmutableSortedSet<>(ImmutableList.of(e1), Ordering.natural());
      }
    
      /**
       * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.8K bytes
    - Viewed (0)
Back to top