- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 171 for Adds (0.01 sec)
-
android/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)); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.1K bytes - Viewed (0) -
guava/src/com/google/common/graph/MutableValueGraph.java
/** * A subinterface of {@link ValueGraph} which adds mutation methods. When mutation is not required, * users should prefer the {@link ValueGraph} interface. * * @author James Sexton * @param <N> Node parameter type * @param <V> Value parameter type * @since 20.0 */ @Beta public interface MutableValueGraph<N, V> extends ValueGraph<N, V> { /** * Adds {@code node} if it is not already present. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K 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) -
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) -
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. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 15.8K bytes - Viewed (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)); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
fieldLogMap = new HashMap<>(); request.setAttribute(Constants.FIELD_LOGS, fieldLogMap); } }); } } /** * Adds function score configuration to the query builder. * @param functionScoreQuery Consumer that configures the function score filters. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java
} else { throw new IllegalArgumentException("Unknown query builder: " + queryBuilder); } } /** * Adds an inner query builder to the wrapped query. * For BoolQueryBuilder, adds as a should clause. * For DisMaxQueryBuilder, adds as a query. * * @param innerQueryBuilder the query builder to add * @return this instance for method chaining */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
okhttp-brotli/src/main/kotlin/okhttp3/brotli/BrotliInterceptor.kt
import okhttp3.CompressionInterceptor import okhttp3.Gzip import okio.BufferedSource import okio.Source import okio.source import org.brotli.dec.BrotliInputStream /** * Transparent Brotli response support. * * Adds Accept-Encoding: br to request and checks (and strips) for Content-Encoding: br in * responses. n.b. this replaces the transparent gzip compression in BridgeInterceptor. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 06:04:22 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/suggest/SuggestBody.java
package org.codelibs.fess.app.web.api.admin.suggest; import org.codelibs.fess.app.web.admin.suggest.SuggestForm; /** * Represents the request body for suggest API operations. * This class extends {@link SuggestForm} and adds fields for tracking * the number of total, document, and query words. */ public class SuggestBody extends SuggestForm { /** * Constructs a new suggest body. */ public SuggestBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0)