Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for favoris (0.03 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.search_result_sort_click_count_asc=par nombre de clics (asc)
    labels.search_result_sort_click_count_desc=par nombre de clics (desc)
    labels.search_result_sort_favorite_count_asc=par nombre de favoris (asc)
    labels.search_result_sort_favorite_count_desc=par nombre de favoris (desc)
    labels.search_result_sort_multiple=Multiple
    labels.search_result_size={0} octets
    labels.search_result_created=Créé :
    labels.search_result_last_modified=Dernière modification :
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

    import org.dbflute.cbean.result.ListResultBean;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing favorite log operations.
     * Provides functionality to add URLs to user favorites and retrieve favorite URL lists.
     * This service handles the persistence and retrieval of favorite log entries in the search system.
     */
    public class FavoriteLogService {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/BaseApiManager.java

            /** Search API format. */
            SEARCH,
            /** Label API format. */
            LABEL,
            /** Popular word API format. */
            POPULARWORD,
            /** Favorite API format. */
            FAVORITE,
            /** Favorites API format. */
            FAVORITES,
            /** Ping API format. */
            PING,
            /** Scroll API format. */
            SCROLL,
            /** Suggest API format. */
            SUGGEST,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. src/main/webapp/js/search.js

          buf.push(hashStr);
        }
      });
    
      $result.on("click", "a.favorite", function(e) {
        var $favorite = $(this),
            values = $favorite.attr("href").split("#"),
            actionUrl,
            docId;
        if (values.length === 2 && $queryId.length > 0) {
          docId = values[1];
          actionUrl = contextPath + "/api/v1/documents/" + docId + "/favorite";
          $.ajax({
            dataType: "json",
            cache: false,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
            final String type = value.toLowerCase(Locale.ROOT);
            if ("documents".equals(type)) {
                if (values.length > 5 && "favorite".equals(values[5])) {
                    request.setAttribute(DOC_ID_FIELD, values[4]);
                    return FormatType.FAVORITE;
                }
                if (values.length > 4 && "all".equals(values[4])) {
                    return FormatType.SCROLL;
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  6. src/main/config/openapi/openapi-user.yaml

              $ref: '#/components/responses/NotFound'
            '500':
              $ref: '#/components/responses/InternalServerError'
    
      /documents/{docId}/favorite:
        post:
          tags:
            - favorite
          summary: Set a favorite mark
          description: Set a favorite mark to the document
          operationId: setFavorite
          parameters:
            - name: docId
              in: path
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. README.md

    ## Adding Guava to your build
    
    Guava's Maven group ID is `com.google.guava`, and its artifact ID is `guava`.
    Guava provides two different "flavors": one for use on a (Java 8+) JRE and one
    for use on Android or by any library that wants to be compatible with Android.
    These flavors are specified in the Maven version field as either `33.4.8-jre` or
    `33.4.8-android`. For more about depending on Guava, see
    [using Guava in your build].
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 05 15:30:14 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/SearchLogEvent.java

     *
     * This interface defines the contract for search log event objects that can be
     * written to log files or stored in the search index. Implementations include
     * search logs, click logs, favorite logs, and user information logs.
     */
    public interface SearchLogEvent {
        /**
         * Gets the unique identifier for this search log event.
         *
         * @return The event ID
         */
        String getId();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

                logger.debug("Click Count: {}, url: {}", count, url);
            }
        }
    
        /**
         * Adds favorite count information to the document.
         *
         * @param doc the document to update
         * @param url the URL to get favorite count for
         * @param favoriteCountField the field name to store favorite count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.search_result_sort_click_count_asc=by Click Count (asc)
    labels.search_result_sort_click_count_desc=by Click Count (desc)
    labels.search_result_sort_favorite_count_asc=by Favorite Count (asc)
    labels.search_result_sort_favorite_count_desc=by Favorite Count (desc)
    labels.search_result_sort_multiple=Multiple
    labels.search_result_size={0} bytes
    labels.search_result_created=Created:
    labels.search_result_last_modified=Last Modified:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top