Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 162 for indication (0.37 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/EditBody.java

     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for scheduler management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Flag indicating whether the scheduler job is currently running.
         */
        public Boolean running;
    
        /**
         * Default constructor.
         */
        public EditBody() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

        @Resource
        protected HttpServletRequest request;
    
        /** Flag indicating whether search logging is enabled. */
        protected boolean searchLogSupport;
    
        /** Flag indicating whether favorite functionality is enabled. */
        protected boolean favoriteSupport;
    
        /** Flag indicating whether thumbnail generation is enabled. */
        protected boolean thumbnailSupport;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

        }
    
        /**
         * Deletes a user setting by ID.
         *
         * @param id the ID of the user setting to delete
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/user/setting/{id}
        @Execute
        public JsonResponse<ApiResult> delete$setting(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LongAdder.java

        add(1L);
      }
    
      /** Equivalent to {@code add(-1)}. */
      public void decrement() {
        add(-1L);
      }
    
      /**
       * Returns the current sum. The returned value is NOT an atomic snapshot; invocation in
       * the absence of concurrent updates returns an accurate result, but concurrent updates that occur
       * while the sum is being calculated might not be incorporated.
       *
       * @return the sum
       */
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlog/EditForm.java

    /**
     * The edit form for Search Log.
     * This form handles the editing of search log entries in the administration interface.
     */
    public class EditForm {
    
        /** CRUD operation mode indicator */
        @ValidateTypeFailure
        public int crudMode;
    
        /** Type of the search log entry */
        @Required
        @Size(max = 10)
        public String logType;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java

       *   ...
       * </pre>
       *
       * <p>The returned handler logs any exception at severity {@code SEVERE} and then shuts down the
       * process with an exit status of 1, indicating abnormal termination.
       */
      public static UncaughtExceptionHandler systemExit() {
        return new Exiter(Runtime.getRuntime()::exit);
      }
    
      @VisibleForTesting
      interface RuntimeWrapper {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Feb 10 21:03:40 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

         */
        public enum Status {
            /** Successful response status. */
            OK(0),
            /** Bad request status indicating client error. */
            BAD_REQUEST(1),
            /** System error status indicating server error. */
            SYSTEM_ERROR(2),
            /** Unauthorized status indicating authentication failure. */
            UNAUTHORIZED(3),
            /** General failure status. */
            FAILED(9);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        private int allRecordCount;
    
        /** Total number of pages based on record count and page size. */
        private int allPageCount;
    
        /** Flag indicating if a previous page exists. */
        private boolean existPrePage;
    
        /** Flag indicating if a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers for pagination navigation. */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        /** Robots tag value indicating no indexing or following */
        private static final String ROBOTS_TAG_NONE = "none";
    
        /** Robots tag value indicating no indexing */
        private static final String ROBOTS_TAG_NOINDEX = "noindex";
    
        /** Robots tag value indicating no following of links */
        private static final String ROBOTS_TAG_NOFOLLOW = "nofollow";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

        public String getOutput() {
            return output;
        }
    
        /**
         * Checks whether this mapping item has pending updates.
         *
         * @return true if both newInputs and newOutput are not null, indicating pending updates
         */
        public boolean isUpdated() {
            return newInputs != null && newOutput != null;
        }
    
        /**
         * Checks whether this mapping item is marked for deletion.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top