Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 201 for retrieve (0.04 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

    import org.lastaflute.web.util.LaServletContextUtil;
    
    import jakarta.servlet.ServletContext;
    
    /**
     * Utility class for accessing various resource paths and files in the Fess application.
     * This class provides methods to retrieve paths for configuration files, templates, dictionaries,
     * thumbnails, plugins, and other resources required by the Fess search engine.
     * It supports both regular deployment and Docker container environments.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        /**
         * Retrieves a specific scheduler setting by ID.
         *
         * @param id the ID of the scheduler setting to retrieve
         * @return JSON response containing the scheduler setting
         */
        // GET /api/admin/scheduler/setting/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java

                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        /**
         * Retrieves a specific key match setting by ID.
         *
         * @param id the ID of the key match setting to retrieve
         * @return JSON response containing the key match setting
         */
        // GET /api/admin/keymatch/setting/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java

                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        /**
         * Retrieves a specific label type setting by ID.
         *
         * @param id the ID of the label type setting to retrieve
         * @return JSON response containing the label type setting
         */
        // GET /api/admin/labeltype/setting/{id}
        @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)
  5. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                    }
                }
            }
            return StringUtil.EMPTY_STRINGS;
        }
    
        /**
         * Retrieves a single document by its document ID.
         *
         * @param docId The document ID to retrieve
         * @param fields Array of field names to include in the result
         * @param userBean Optional user information for permission checking
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                }
                return false;
            }).orElse(false);
        }
    
        /**
         * Retrieves the localized label value for the given key from the current request's label map.
         *
         * @param value the label key to retrieve
         * @return the localized label value, or the key itself if not found
         */
        public static String label(final String value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Throwables.java

       *
       * <ul>
       *   <li>{@code getStackTrace} takes {@code stackSize} time to return but then negligible time to
       *       retrieve each element of the returned list.
       *   <li>{@code lazyStackTrace} takes negligible time to return but then {@code 1/stackSize} time
       *       to retrieve each element of the returned list (probably slightly more than {@code
       *       1/stackSize}).
       * </ul>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

                            .collect(Collectors.toList())).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Retrieves a specific stemmer override dictionary item by ID.
         *
         * @param dictId the dictionary ID
         * @param id the ID of the stemmer override item to retrieve
         * @return JSON response containing the stemmer override dictionary item
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        // GET /api/admin/elevateword/{id}
        /**
         * Retrieves a specific elevate word setting by ID.
         *
         * @param id the ID of the elevate word to retrieve
         * @return JSON response containing the elevate word configuration
         */
        @Execute
        public JsonResponse<ApiResult> get$setting(final String id) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

        public abstract String getType();
    
        /**
         * Retrieves a paginated list of dictionary items.
         *
         * @param offset the starting offset for pagination
         * @param size the number of items to retrieve
         * @return a paginated list of dictionary items
         */
        public abstract PagingList<T> selectList(int offset, int size);
    
        /**
         * Retrieves a dictionary item by its ID.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top