- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 213 for adts (0.01 sec)
-
cmd/data-usage-cache.go
ats.Tiers[tier] = ats.Tiers[tier].add(st) } } func (ats *allTierStats) merge(other *allTierStats) { for tier, st := range other.Tiers { ats.Tiers[tier] = ats.Tiers[tier].add(st) } } func (ats *allTierStats) clone() *allTierStats { if ats == nil { return nil } dst := *ats dst.Tiers = make(map[string]tierStats, len(ats.Tiers)) maps.Copy(dst.Tiers, ats.Tiers) return &dst }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java
request.setSize(size); return this; } /** * Adds a tag to filter by. * @param tag The tag. * @return This builder instance. */ public PopularWordsRequestBuilder addTag(final String tag) { request.addTag(tag); return this; } /** * Adds a role to filter by. * @param role The role. * @return This builder instance. */
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/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilder.java
request.setQuery(query); return this; } /** * Adds a tag to filter by. * @param tag The tag. * @return This builder instance. */ public SuggestRequestBuilder addTag(final String tag) { request.addTag(tag); return this; } /** * Adds a role to filter by. * @param role The role. * @return This builder instance. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/RuleManager.java
/** * Adds a new rule to the rule manager. * * @param rule the rule to be added */ void addRule(Rule rule); /** * Adds a rule to the specified index. * * @param index the position at which the rule should be added * @param rule the rule to be added */ /** * Adds a rule to the specified index. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
public ExecJob useLocalFesen(final boolean useLocalFesen) { this.useLocalFesen = useLocalFesen; return this; } /** * Enables remote debugging for this job execution. * Adds JVM options for remote debugging on localhost:8000. * * @return this ExecJob instance for method chaining */ public ExecJob remoteDebug() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
} catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("CrawlerClientCreator is unavailable.", e); } } } /** * Adds a client with a regular expression pattern. * @param regex The regular expression to match URLs. * @param client The CrawlerClient instance. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryWrapper.java
factory.init(); } /** * Adds a client to the wrapped factory. * @param regex The regular expression for the client. * @param client The CrawlerClient instance. */ @Override public void addClient(final String regex, final CrawlerClient client) { factory.addClient(regex, client); } /** * Adds a client to the wrapped factory at a specific position.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocList.java
* * @return the total content size in bytes */ public long getContentSize() { return contentSize; } /** * Adds to the total content size of this document list. * * @param contentSize the content size to add in bytes */ public void addContentSize(final long contentSize) { this.contentSize += contentSize;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0)