- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 1,187 for adds (0.01 sec)
-
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
@CanIgnoreReturnValue @Override public Builder<E> add(E element) { super.add(element); return this; } /** * Adds each element of {@code elements} to the {@code ImmutableSortedSet}, ignoring duplicate * elements (only the first duplicate element is added). * * @param elements the elements to add * @return this {@code Builder} object
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
return initGeoParamMap; } /** * Adds a facet query view to the list. * * @param facetQueryView the facet query view to add */ public void addFacetQueryView(final FacetQueryView facetQueryView) { facetQueryViewList.add(facetQueryView); } /** * Gets the list of facet query views. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/timer/TimeoutManager.java
return !t.isAlive(); } /** * Clears the managed {@link TimeoutTask}. */ public synchronized void clear() { timeoutTaskList.clear(); } /** * Adds a {@link TimeoutTarget}. * * @param timeoutTarget the target * @param timeout the timeout duration * @param permanent whether the task is permanent * @return the {@link TimeoutTask} */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
* Uses the request locale if available, otherwise defaults to English. * * @param validationMessagesLambda lambda function that adds validation messages * @return concatenated string of localized validation messages separated by spaces */ protected String getMessage(final VaMessenger<FessMessages> validationMessagesLambda) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapEntry.java
import com.google.common.annotations.GwtIncompatible; import java.util.AbstractMap.SimpleImmutableEntry; import org.jspecify.annotations.Nullable; /** * Implementation of {@code Entry} for {@link ImmutableMap} that adds extra methods to traverse hash * buckets for the key and the value. This allows reuse in {@link RegularImmutableMap} and {@link * RegularImmutableBiMap}, which don't have to recopy the entries created by their {@code Builder}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 21:42:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
/** * Converter not associated with specific properties. */ protected final List<Converter> converters = newArrayList(); /** * Adds property names to include in the operation. * * @param propertyNames * Array of property names. Must not be {@literal null} or an empty array. * @return This instance itself */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 28.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/EqualsTester.java
for (int i = 0; i < equalityGroup.length; i++) { Object element = equalityGroup[i]; if (element == null) { throw new NullPointerException("at index " + i); } list.add(element); } equalityGroups.add(list); return this; } /** Run tests on equals method, throwing a failure on an invalid test */ @CanIgnoreReturnValue public EqualsTester testEquals() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.1K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/FakeTickerTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ExecutionList.java
* documentation. */ public void add(Runnable runnable, Executor executor) { // Fail fast on a null. We throw NPE here because the contract of Executor states that it throws // NPE on null listener, so we propagate that contract up into the add method as well. checkNotNull(runnable, "Runnable was null."); checkNotNull(executor, "Executor was null.");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0)