- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for frequency (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
this.lastmod = lastmod; } /** * Returns the change frequency of this sitemap entry. * @return the change frequency */ public String getChangefreq() { return changefreq; } /** * Sets the change frequency of this sitemap entry. * @param changefreq the change frequency to set */ public void setChangefreq(final String changefreq) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SimpleAbstractMultisetTest.java
checkArgument(occurrences >= 0); Integer frequency = backingMap.getOrDefault(element, 0); if (occurrences == 0) { return frequency; } checkArgument(occurrences <= Integer.MAX_VALUE - frequency); backingMap.put(element, frequency + occurrences); return frequency; } @Override Iterator<E> elementIterator() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java
* <li>{@link #READING_PREFIX} - The prefix for reading fields.</li> * <li>{@link #SCORE} - The score field.</li> * <li>{@link #QUERY_FREQ} - The query frequency field.</li> * <li>{@link #DOC_FREQ} - The document frequency field.</li> * <li>{@link #USER_BOOST} - The user boost field.</li> * <li>{@link #KINDS} - The kinds field.</li> * <li>{@link #TIMESTAMP} - The timestamp field.</li>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java
request.addExcludeWord(excludeWord); return this; } /** * Sets the query frequency threshold. * @param queryFreqThreshold The query frequency threshold. * @return This builder instance. */ public PopularWordsRequestBuilder setQueryFreqThreshold(final int queryFreqThreshold) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java
this.responseSequenceNumber = responseSequenceNumber; } /** * Gets the heartbeat interval recommended by the server (in milliseconds). * The client can use this to adjust the heartbeat frequency. * * @return the heartbeat interval in milliseconds */ public long getHeartbeatInterval() { return heartbeatInterval; } /** * Sets the heartbeat interval.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java
*/ public void addExcludeWord(final String excludeWord) { excludeWords.add(excludeWord); } /** * Sets the query frequency threshold. * @param queryFreqThreshold The query frequency threshold. */ public void setQueryFreqThreshold(final int queryFreqThreshold) { this.queryFreqThreshold = queryFreqThreshold; } @Override
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 9.2K bytes - Viewed (0) -
docs/features/events.md
Events ====== Events allow you to capture metrics on your application’s HTTP calls. Use events to monitor: * The size and frequency of the HTTP calls your application makes. If you’re making too many calls, or your calls are too large, you should know about it! * The performance of these calls on the underlying network. If the network’s performance isn’t sufficient, you need to either improve the network or use less of it. ### EventListener
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 7.7K bytes - Viewed (0) -
src/arena/arena.go
of this functionality is to improve efficiency: manually freeing memory before a garbage collection delays that cycle. Less frequent cycles means the CPU cost of the garbage collector is incurred less frequently. This functionality in this package is mostly captured in the Arena type. Arenas allocate large chunks of memory for Go values, so they're likely to
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Oct 12 20:23:36 UTC 2022 - 4.3K bytes - Viewed (0) -
docs/pt/docs/help-fastapi.md
Existem métodos muito simples de ajudar (A maioria das ajudas podem ser feitas com um ou dois cliques). E também existem vários modos de se conseguir ajuda. ## Inscreva-se na newsletter Você pode se inscrever (pouco frequente) [**FastAPI e amigos** newsletter](newsletter.md){.internal-link target=_blank} para receber atualizações: * Notícias sobre FastAPI e amigos 🚀 * Tutoriais 📝 * Recursos ✨ * Mudanças de última hora 🚨
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 8.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
* It uses a ConcurrentMap to store the last access time for each host. * The delayBeforeProcessing method is overridden to introduce a delay before processing a URL, * ensuring that requests to the same host are not made too frequently. * The delay is calculated based on the configured delayMillisBeforeProcessing parameter. * If the time since the last request to the host is less than the configured delay, * the thread waits until the delay has elapsed.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.2K bytes - Viewed (0)