- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for favoris (0.05 sec)
-
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
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) -
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) -
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) -
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
TestSearchLogEvent clickEvent = new TestSearchLogEvent("id", 1L, "click"); assertEquals("click", clickEvent.getEventType()); // Test favorite event type TestSearchLogEvent favoriteEvent = new TestSearchLogEvent("id", 1L, "favorite"); assertEquals("favorite", favoriteEvent.getEventType()); // Test user_info event type
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
return clickLogBhv.selectCount(cb -> { cb.query().setUrl_Equal(url); }); } /** * Gets the favorite count for a URL. * * @param url The URL. * @return The favorite count. */ public long getFavoriteCount(final String url) { final FavoriteLogBhv favoriteLogBhv = ComponentUtil.getComponent(FavoriteLogBhv.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt
* very flexible regarding wildcard rules, but this flexibility is not something currently used * in practice. To simplify the implementation, we've avoided implementing the flexible rules in * favor of supporting what's actually used in practice. That means if these assertions ever fail, * the implementation will need to be revisited to support a more flexible rule. */ private fun assertWildcardRule(rule: String) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Aug 06 05:33:11 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
breakCursor = true; } } }); }; } /** * Get the write call for favorite log ndjson. * @return The write call. */ public static Consumer<Writer> getFavoriteLogNdjsonWriteCall() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableLongArray.java
@IgnoreJRERequirement // used only from APIs that use streams /* * We declare this as package-private, rather than private, to avoid generating a synthetic * accessor method (under -target 8) that would lack the Android flavor's @IgnoreJRERequirement. */ Spliterator.OfLong spliterator() { return Spliterators.spliterator(array, start, end, Spliterator.IMMUTABLE | Spliterator.ORDERED); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22K bytes - Viewed (0) -
guava/src/com/google/common/primitives/ImmutableIntArray.java
} /* * We declare this as package-private, rather than private, to avoid generating a synthetic * accessor method (under -target 8) that would lack the Android flavor's @IgnoreJRERequirement. */ Spliterator.OfInt spliterator() { return Spliterators.spliterator(array, start, end, Spliterator.IMMUTABLE | Spliterator.ORDERED); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 21.4K bytes - Viewed (0)