Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 458 for containing (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

        }
    
        /**
         * Creates a synonym item from the provided form data with validation.
         *
         * @param form the create form containing synonym data
         * @param hook the validation error hook for handling errors
         * @return OptionalEntity containing the created synonym item or empty if creation failed
         */
        protected OptionalEntity<SynonymItem> createSynonymItem(final CreateForm form, final VaErrorHook hook) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

         * Retrieve list of protected words entries for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param body search criteria and paging parameters
         * @return JSON response containing list of entries
         */
        // GET /api/admin/dict/protwords/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.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

            }
            return OptionalEntity.empty();
        }
    
        /**
         * Creates a RelatedQuery entity from the provided form data.
         *
         * @param form the form containing the related query data
         * @return optional entity containing the related query data, or empty if creation fails
         */
        public static OptionalEntity<RelatedQuery> getRelatedQuery(final CreateForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

        //                                                                        ============
        /**
         * Creates a Role entity from form data.
         *
         * @param form the form containing the role data
         * @return optional entity containing the role data, or empty if creation fails
         */
        private static OptionalEntity<Role> getEntity(final CreateForm form) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

         * Creates a ScheduledJob entity from form data with user and timestamp information.
         *
         * @param form the form containing the scheduled job data
         * @param username the username of the user performing the operation
         * @param currentTime the current timestamp
         * @return optional entity containing the scheduled job data, or empty if creation fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java

        /**
         * Retrieves a list of related query settings.
         *
         * @param body search parameters for filtering and pagination
         * @return JSON response containing related query configurations
         */
        // GET /api/admin/relatedquery/settings
        // PUT /api/admin/relatedquery/settings
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

            }
            return OptionalEntity.empty();
        }
    
        /**
         * Creates a RelatedContent entity from the provided form data.
         *
         * @param form the form containing the related content data
         * @return optional entity containing the related content data, or empty if creation fails
         */
        public static OptionalEntity<RelatedContent> getRelatedContent(final CreateForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

        /**
         * Retrieves synonym 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 synonym dictionary items
         */
        // GET /api/admin/dict/synonym/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)
  9. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

        protected final long queryTime;
    
        /** Flag indicating whether the search results are partial due to timeout or other constraints. */
        protected final boolean partialResults;
    
        /** The facet response containing aggregated facet information for the search results. */
        protected final FacetResponse facetResponse;
    
        /**
         * Constructs a new SearchResult with the specified parameters.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/testers/MapEqualsTester.java

    @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    public class MapEqualsTester<K, V> extends AbstractMapTester<K, V> {
      public void testEquals_otherMapWithSameEntries() {
        assertTrue(
            "A Map should equal any other Map containing the same entries.",
            getMap().equals(newHashMap(getSampleEntries())));
      }
    
      @CollectionSize.Require(absent = CollectionSize.ZERO)
      public void testEquals_otherMapWithDifferentEntries() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top