Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for retrieve (0.16 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            }
            return configId.substring(1);
        }
    
        /**
         * Retrieves a crawling configuration by its config ID.
         * This method uses caching to improve performance and automatically determines
         * the configuration type and delegates to the appropriate service.
         *
         * @param configId the configuration ID to retrieve
         * @return the CrawlingConfig object or null if not found or on error
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            return now + days * Constants.ONE_DAY_IN_MILLIS;
        }
    
        /**
         * Retrieves all crawling information parameters for the specified session as a map.
         *
         * @param sessionId the session ID to retrieve parameters for
         * @return a map containing all key-value parameter pairs for the session
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         */
        public PluginHelper() {
            // Default constructor
        }
    
        /**
         * Retrieves available artifacts of the specified type from configured repositories.
         *
         * @param artifactType the type of artifacts to retrieve
         * @return an array of available artifacts
         * @throws PluginException if failed to access the artifact repository
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java

          }
        }
      }
    
      /**
       * Invokes {@code future.}{@link Future#get() get()} uninterruptibly.
       *
       * <p>Similar methods:
       *
       * <ul>
       *   <li>To retrieve a result from a {@code Future} that is already done, use {@link
       *       Futures#getDone Futures.getDone}.
       *   <li>To treat {@link InterruptedException} uniformly with other exceptions, use {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

            }
        }
    
        /**
         * Safely retrieves a value from a list at the specified index, handling bounds checking
         * and cleaning up quoted strings.
         *
         * @param list the list to retrieve the value from
         * @param index the index of the value to retrieve
         * @return the cleaned value at the specified index, or empty string if index is out of bounds
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         *
         * @return the file path as a string
         */
        @Override
        public String getPath() {
            return path;
        }
    
        /**
         * Retrieves a character mapping item by its ID.
         *
         * @param id the unique identifier of the mapping item to retrieve
         * @return an OptionalEntity containing the mapping item if found, empty otherwise
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java

                            .total(pager.getAllRecordCount())
                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        /**
         * Retrieves a specific bad word setting by ID.
         *
         * @param id the ID of the bad word to retrieve
         * @return JSON response containing the bad word configuration
         */
        // GET /api/admin/badword/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/TreeBasedTable.java

       * Ordering#natural()} is returned.
       *
       * @deprecated Store the {@link Comparator} alongside the {@link Table}. Or, if you know that the
       *     {@link Table} contains at least one value, you can retrieve the {@link Comparator} with:
       *     {@code ((SortedMap<C, V>) table.rowMap().values().iterator().next()).comparator();}.
       */
      @Deprecated
      public Comparator<? super C> columnComparator() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top