Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for favoris (0.04 sec)

  1. guava/src/com/google/common/collect/ImmutableMapValues.java

      @J2ktIncompatible
      /*
       * The mainline copy of ImmutableMapValues doesn't produce this serialized form anymore, though
       * the backport does. For now, we're keeping the class declaration in *both* flavors so that both
       * flavors can read old data or data from the other flavor. However, we strongly discourage
       * relying on this, as we have made incompatible changes to serialized forms in the past and
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_es.properties

    labels.search_result_sort_click_count_asc=Clics (asc)
    labels.search_result_sort_click_count_desc=Clics (desc)
    labels.search_result_sort_favorite_count_asc=Favoritos (asc)
    labels.search_result_sort_favorite_count_desc=Favoritos (desc)
    labels.search_result_sort_multiple=Múltiple
    labels.search_result_size={0} bytes
    labels.search_result_created=Fecha de registro:
    labels.search_result_last_modified=Última modificación:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    }
                }
            }
        }
    
        /**
         * Creates search conditions for favorite log queries based on pager criteria.
         *
         * @param pager The search log pager containing filter criteria
         * @param cb The favorite log condition bean to configure
         */
        private void createFavoriteLogCondition(final SearchLogPager pager, final FavoriteLogCB cb) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * When enabled, user information is stored and tracked.
         */
        @Size(max = 10)
        public String userInfo;
    
        /**
         * Enable or disable user favorite functionality.
         * When enabled, users can save favorite search results.
         */
        @Size(max = 10)
        public String userFavorite;
    
        /**
         * Enable or disable JSON Web API.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        /** Log type constant for click count aggregation. */
        public static final String LOG_TYPE_CLICK_COUNT = "click_count_agg";
    
        /** Log type constant for favorite logs. */
        public static final String LOG_TYPE_FAVORITE = "favorite";
    
        /** Log type constant for favorite count aggregation. */
        public static final String LOG_TYPE_FAVORITE_COUNT = "favorite_count_agg";
    
        /** Log type constant for user information logs. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_pt_BR.properties

    errors.login.failure = Falha no login.
    errors.app.illegal.transition = Transição ilegal. Por favor, tente novamente.
    errors.app.db.already.deleted = Pode ter sido excluído por outro processo. Por favor, tente novamente.
    errors.app.db.already.updated = Pode ter sido atualizado por outro processo. Por favor, tente novamente.
    errors.app.db.already.exists = Os dados já existem. Por favor, tente novamente.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/log/exentity/FavoriteLog.java

                    + userInfoId + ", docMeta=" + docMeta + "]";
        }
    
        @Override
        public String getEventType() {
            return "favorite";
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/form-validator/lang/es.js

    números)",badAlphaNumericExtra:" y",wrongFileSize:"El archivo que está tratando de subir es demasiado grande (máx. %s)",wrongFileType:"Sólo los archivos del tipo %s están permitido",groupCheckedRangeStart:"Por favor, elija entre ",groupCheckedTooFewStart:"Por favor, elija al menos ",groupCheckedTooManyStart:"Por favor, elija un máximo de ",groupCheckedEnd:" ítem(s)",badCreditCard:"El número de tarjeta de crédito proporcionado no es válido",badCVV:"CVV proporcionado no es válido",wrongFileDim:"Las dimensiones de...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                }
            }
        }
    
        /**
         * Adds a favorite count field to the document based on user favorite data.
         * The favorite count represents how many users have marked this document as a favorite.
         *
         * @param map the document data map to add the favorite count to
         */
        protected void addFavoriteCountField(final Map<String, Object> map) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            assertNotNull("Doc ID should be set", dataMap.get("doc_id"));
            assertNotNull("Click count should be set", dataMap.get("click_count"));
            assertNotNull("Favorite count should be set", dataMap.get("favorite_count"));
            assertEquals(1, indexUpdateCallback.docList.size());
        }
    
        public void test_store_withoutUrl_throwsException() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top