- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 2,580 for of (0.02 seconds)
-
architecture/standards/0006-use-of-provider-apis-in-gradle.md
#### Nested values This is an inappropriate use of lazy types: ```groovy interface NestedType { Property<String> getSomeProperty() } class Example { Property<NestedType> getNestedProperty() } ```Created: 2026-04-01 11:36 - Last Modified: 2026-03-05 12:39 - 10K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Included URLs for Searching */ public static final String LABELS_INCLUDED_DOC_URLS = "{labels.includedDocUrls}"; /** The key of the message: Max Access Count */ public static final String LABELS_MAX_ACCESS_COUNT = "{labels.maxAccessCount}"; /** The key of the message: Name */ public static final String LABELS_NAME = "{labels.name}"; /** The key of the message: Number of Threads */Created: 2026-03-31 13:07 - Last Modified: 2026-03-28 11:54 - 172.6K bytes - Click Count (0) -
src/builtin/builtin.go
// The max built-in function returns the largest value of a fixed number of // arguments of [cmp.Ordered] types. There must be at least one argument. // If T is a floating-point type and any of the arguments are NaNs, // max will return NaN. func max[T cmp.Ordered](x T, y ...T) T // The min built-in function returns the smallest value of a fixed number of // arguments of [cmp.Ordered] types. There must be at least one argument.
Created: 2026-04-07 11:13 - Last Modified: 2026-02-26 17:14 - 13.2K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/ValueGraph.java
* whose edges have associated non-unique values. * * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes. * * <p>There are three primary interfaces provided to represent graphs. In order of increasing * complexity they are: {@link Graph}, {@link ValueGraph}, and {@link Network}. You should generallyCreated: 2026-04-03 12:43 - Last Modified: 2026-03-11 01:10 - 15K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java
/** * Represents the response of a suggest index operation. * This class contains information about the number of suggest documents, * the number of input documents, any errors that occurred during the operation, * and the time taken to complete the operation. */ public class SuggestIndexResponse implements Response { /** The number of suggest documents. */ protected final int numberOfSuggestDocs;Created: 2026-04-17 09:08 - Last Modified: 2026-02-01 12:48 - 3.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/math/StatsTesting.java
static final Stats EMPTY_STATS_VARARGS = Stats.of(); static final Stats EMPTY_STATS_ITERABLE = Stats.of(ImmutableList.<Double>of()); static final Stats ONE_VALUE_STATS = Stats.of(ONE_VALUE); static final Stats OTHER_ONE_VALUE_STATS = Stats.of(OTHER_ONE_VALUE); static final Stats TWO_VALUES_STATS = Stats.of(TWO_VALUES); static final Stats OTHER_TWO_VALUES_STATS = Stats.of(OTHER_TWO_VALUES);
Created: 2026-04-03 12:43 - Last Modified: 2026-03-03 05:21 - 24K bytes - Click Count (0) -
docs/en/docs/async.md
And as most of the execution time is taken by actual work (instead of waiting), and the work in a computer is done by a <abbr title="Central Processing Unit">CPU</abbr>, they call these problems "CPU bound". --- Common examples of CPU bound operations are things that require complex math processing. For example: * **Audio** or **image processing**.
Created: 2026-04-05 07:19 - Last Modified: 2026-03-05 18:13 - 23.4K bytes - Click Count (0) -
docs/en/docs/tutorial/body-nested-models.md
{* ../../docs_src/body_nested_models/tutorial005_py310.py hl[2,8] *} The string will be checked to be a valid URL, and documented in JSON Schema / OpenAPI as such. ## Attributes with lists of submodels { #attributes-with-lists-of-submodels } You can also use Pydantic models as subtypes of `list`, `set`, etc.:Created: 2026-04-05 07:19 - Last Modified: 2026-03-05 18:13 - 6.6K bytes - Click Count (0) -
guava/src/com/google/common/base/Preconditions.java
* <p>It is of course possible to use the methods of this class to check for invalid conditions * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is * misleading to future readers of the code and of stack traces. See <a * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures * explained</a> in the Guava User Guide for more advice. Notably, {@link Verify} offers assertions
Created: 2026-04-03 12:43 - Last Modified: 2026-01-08 18:10 - 53.5K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/Traverser.java
*/ public final Iterable<N> breadthFirst(N startNode) { return breadthFirst(ImmutableSet.of(startNode)); } /** * Returns an unmodifiable {@code Iterable} over the nodes reachable from any of the {@code * startNodes}, in the order of a breadth-first traversal. This is equivalent to a breadth-first
Created: 2026-04-03 12:43 - Last Modified: 2026-03-11 01:10 - 19.3K bytes - Click Count (0)