- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of over 10,000 for of (0.02 seconds)
-
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
} /** * Gets the list of page numbers for pagination navigation. * * @return list of page numbers */ public List<Integer> getPageNumberList() { return pageNumberList; } /** * Sets the list of page numbers for pagination navigation. * * @param pageNumberList list of page numbers */Created: 2026-03-31 13:07 - Last Modified: 2025-07-17 08:28 - 6.8K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java
* words, for the default {@code expectContents()} implementation, the number of occurrences of * each given element has increased by one since the test collection was created, and the number * of occurrences of all other elements has not changed. * * <p>Note: This means that a test like the following will fail if {@code collection} is a {@code * Set}:Created: 2026-04-03 12:43 - Last Modified: 2025-09-22 20:54 - 8.9K bytes - Click Count (0) -
guava/src/com/google/common/collect/Sets.java
* <ul> * <li>{@code ImmutableList.of(1, "A")} * <li>{@code ImmutableList.of(1, "B")} * <li>{@code ImmutableList.of(1, "C")} * <li>{@code ImmutableList.of(2, "A")} * <li>{@code ImmutableList.of(2, "B")} * <li>{@code ImmutableList.of(2, "C")} * </ul> * * <p>The result is guaranteed to be in the "traditional", lexicographical order for Cartesian
Created: 2026-04-03 12:43 - Last Modified: 2026-02-23 19:19 - 83K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java
* * <ul> * <li>returning the same iterator again * <li>throwing an exception of some kind * <li>or the usual, <i>robust</i> behavior, which all known {@link Collection} implementations * have, of returning a new, independent iterator * </ul> * * <p>Because of this situation, any public method accepting an iterable should invoke the {@code
Created: 2026-04-03 12:43 - Last Modified: 2024-12-22 03:38 - 3.1K bytes - Click Count (0) -
cmd/storage-datatypes.go
Rotational bool Metrics DiskMetrics Error string // carries the error over the network } // DiskMetrics has the information about XL Storage APIs // the number of calls of each API and the moving average of // the duration of each API. type DiskMetrics struct { LastMinute map[string]AccElem `json:"apiLatencies,omitempty"` APICalls map[string]uint64 `json:"apiCalls,omitempty"`Created: 2026-04-05 19:28 - Last Modified: 2025-09-28 20:59 - 17.4K bytes - Click Count (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
"License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
Created: 2026-04-05 03:35 - Last Modified: 2025-05-18 09:15 - 33.8K bytes - Click Count (0) -
guava/src/com/google/common/base/Strings.java
} /** * Returns a string consisting of a specific number of concatenated copies of an input string. For * example, {@code repeat("hey", 3)} returns the string {@code "heyheyhey"}. * * <p><b>Java 11+ users:</b> use {@code string.repeat(count)} instead. * * @param string any non-null string * @param count the number of times to repeat it; a nonnegative integerCreated: 2026-04-03 12:43 - Last Modified: 2026-01-29 22:14 - 12.5K bytes - Click Count (0) -
src/arena/arena.go
the CPU cost of the garbage collector is incurred less frequently. This functionality in this package is mostly captured in the Arena type. Arenas allocate large chunks of memory for Go values, so they're likely to be inefficient for allocating only small amounts of small Go values. They're best used in bulk, on the order of MiB of memory allocated on each use. Note that by allowing for this limited form of manual memory allocation
Created: 2026-04-07 11:13 - Last Modified: 2022-10-12 20:23 - 4.3K bytes - Click Count (0) -
src/bufio/scan.go
return data } // ScanLines is a split function for a [Scanner] that returns each line of // text, stripped of any trailing end-of-line marker. The returned line may // be empty. The end-of-line marker is one optional carriage return followed // by one mandatory newline. In regular expression notation, it is `\r?\n`. // The last non-empty line of input will be returned even if it has no // newline.
Created: 2026-04-07 11:13 - Last Modified: 2025-05-21 18:05 - 14.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
return this; } /** * Gets the list of active features. * * @return A list of active features. */ public List<String> activeFeatures() { return activeFeatures; } /** * Sets the list of active features. * * @param activeFeatures A list of active features. * @return This query builder. */Created: 2026-03-31 13:07 - Last Modified: 2025-07-17 08:28 - 7.6K bytes - Click Count (0)