Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 201 for retrieve (0.04 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

    import org.codelibs.fess.Constants;
    import org.dbflute.optional.OptionalThing;
    
    /**
     * Utility class for managing field configurations with parameter mappings.
     * This class provides functionality to retrieve and manage field-specific configurations
     * from a parameter map.
     */
    public class FieldConfigs {
    
        /**
         * Map containing field names as keys and their corresponding configuration values as values.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java

    import org.lastaflute.web.response.ActionResponse;
    import org.lastaflute.web.response.StreamResponse;
    
    /**
     * Action class for handling cached document content requests.
     * Provides functionality to retrieve and display cached versions of crawled documents.
     */
    public class CacheAction extends FessSearchAction {
    
        /**
         * Creates a new instance of CacheAction.
         */
        public CacheAction() {
            super();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.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/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

                    .collect(Collectors.toList())).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Retrieves a specific stopwords dictionary item by ID.
         *
         * @param dictId the dictionary ID
         * @param id the ID of the stopwords item to retrieve
         * @return JSON response containing the stopwords dictionary item
         */
        // GET /api/admin/dict/stopwords/setting/{dictId}/{id}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. samples/simple-client/src/main/java/okhttp3/sample/OkHttpContributors.java

        OkHttpClient client = new OkHttpClient();
    
        // Create request for remote resource.
        Request request = new Request.Builder()
            .url(ENDPOINT)
            .build();
    
        // Execute the request and retrieve the response.
        try (Response response = client.newCall(request).execute()) {
          // Deserialize HTTP response to concrete type.
          ResponseBody body = response.body();
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

            super();
        }
    
        private static final Logger logger = LogManager.getLogger(ApiAdminDictMappingAction.class);
    
        @Resource
        private CharMappingService charMappingService;
    
        /**
         * Retrieve list of character mapping entries for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param body search criteria and paging parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top