Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for favorite_count (0.05 sec)

  1. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

        }
    
        public void test_addFavoriteCountField() {
            searchLogHelper.favoriteCount = 99L;
    
            Map<String, Object> doc = new HashMap<>();
            indexUpdateCallback.addFavoriteCountField(doc, "http://example.com", "favorite_count");
    
            assertEquals(99L, doc.get("favorite_count"));
        }
    
        public void test_getDocumentSize() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            assertEquals(5L, doc.get("favorite_count"));
        }
    
        // Test addFavoriteCountField without URL
        public void test_addFavoriteCountField_withoutUrl() {
            final Map<String, Object> doc = new HashMap<>();
    
            indexUpdater.addFavoriteCountField(doc);
    
            assertNull(doc.get("favorite_count"));
        }
    
        // Test ingest with null IngestFactory
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                        return "4000";
    
                    // Crawler hotthread properties
    
                    // Index field constants
                    case FessConfig.INDEX_FIELD_favorite_count:
                        return "favorite_count";
                    case FessConfig.INDEX_FIELD_click_count:
                        return "click_count";
                    case FessConfig.INDEX_FIELD_config_id:
                        return "config_id";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/query/QueryTestBase.java

                public String getIndexFieldClickCount() {
                    return "click_count";
                }
    
                @Override
                public String getIndexFieldFavoriteCount() {
                    return "favorite_count";
                }
    
                @Override
                public String getIndexFieldConfigId() {
                    return "config_id";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/query/QueryCommandTest.java

                public String getIndexFieldClickCount() {
                    return "click_count";
                }
    
                @Override
                public String getIndexFieldFavoriteCount() {
                    return "favorite_count";
                }
    
                @Override
                public String getIndexFieldConfigId() {
                    return "config_id";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

                public String getIndexFieldClickCount() {
                    return "click_count";
                }
    
                @Override
                public String getIndexFieldFavoriteCount() {
                    return "favorite_count";
                }
    
                @Override
                public String getIndexFieldConfigId() {
                    return "config_id";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    index.id.digest.algorithm=SHA-512
    # Initial password for the index user.
    index.user.initial_password=admin
    
    # field names
    
    # Field name for favorite count in the index.
    index.field.favorite_count=favorite_count
    # Field name for click count in the index.
    index.field.click_count=click_count
    # Field name for config ID in the index.
    index.field.config_id=config_id
    # Field name for expiration date in the index.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. admin */
        String INDEX_USER_initial_password = "index.user.initial_password";
    
        /** The key of the configuration. e.g. favorite_count */
        String INDEX_FIELD_favorite_count = "index.field.favorite_count";
    
        /** The key of the configuration. e.g. click_count */
        String INDEX_FIELD_click_count = "index.field.click_count";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  9. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                public String getIndexFieldClickCount() {
                    return "click_count";
                }
    
                @Override
                public String getIndexFieldFavoriteCount() {
                    return "favorite_count";
                }
    
                @Override
                public String getIndexFieldConfigId() {
                    return "config_id";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  10. src/main/webapp/js/search.js

            }
          })
            .done(function(data) {
              var $favorited,
                  $favoritedCount;
              if (data.result === "created") {
                $favorited = $favorite.siblings(".favorited");
                $favoritedCount = $(".favorited-count", $favorited);
                $favoritedCount.css("display", "none");
                $favorite.fadeOut(1000, function() {
                  $favorited.fadeIn(1000);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top