- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 413 for adts (0.04 seconds)
-
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. */
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 4.8K bytes - Click Count (0) -
guava/src/com/google/common/base/MoreObjects.java
} /** * Adds a name/value pair to the formatted output in {@code name=value} format. * * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}). */ @CanIgnoreReturnValue public ToStringHelper add(String name, boolean value) { return addUnconditionalHolder(name, String.valueOf(value)); } /**Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 16.6K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/MutableNetwork.java
/** * A subinterface of {@link Network} which adds mutation methods. When mutation is not required, * users should prefer the {@link Network} interface. * * @author James Sexton * @author Joshua O'Madadhain * @param <N> Node parameter type * @param <E> Edge parameter type * @since 20.0 */ @Beta public interface MutableNetwork<N, E> extends Network<N, E> { /** * Adds {@code node} if it is not already present. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 4.4K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlFilterService.java
*/ public interface UrlFilterService { /** * Adds a URL to the include filter list for the specified session. * * @param sessionId the ID of the session for which the URL filter is being added * @param url the URL to be included in the filter list */ void addIncludeUrlFilter(String sessionId, String url); /** * Adds a list of URLs to the include filter for a given session. *Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 3.1K bytes - Click Count (0) -
android/guava/src/com/google/common/math/StatsAccumulator.java
} } /** * Adds the given values to the dataset. * * @param values a series of values, which will be converted to {@code double} values (this may * cause loss of precision) */ public void addAll(Iterable<? extends Number> values) { for (Number value : values) { add(value.doubleValue()); } } /** * Adds the given values to the dataset. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Apr 14 16:36:11 GMT 2025 - 15.8K bytes - Click Count (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.
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 5.2K bytes - Click Count (10) -
architecture/standards/0001-use-architectural-decision-records.md
The main logic with ADRs is to describe (architectural) decisions made: * To provide best practices and solutions we (as the *build tool* team) want to promote. * To avoid asking the same thing multiple times during code review. * To explain *rejected solutions*, for now, and future development, in case they are proposed again. ADRs can be written by any team.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Aug 26 17:29:22 GMT 2025 - 2.8K bytes - Click Count (0) -
guava/src/com/google/common/graph/MutableNetwork.java
/** * A subinterface of {@link Network} which adds mutation methods. When mutation is not required, * users should prefer the {@link Network} interface. * * @author James Sexton * @author Joshua O'Madadhain * @param <N> Node parameter type * @param <E> Edge parameter type * @since 20.0 */ @Beta public interface MutableNetwork<N, E> extends Network<N, E> { /** * Adds {@code node} if it is not already present. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 4.4K bytes - Click Count (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() {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Thu Aug 07 02:41:28 GMT 2025 - 9.2K bytes - Click Count (0)