- Sort Score
- Result 10 results
- Languages All
Results 1501 - 1510 of 3,587 for findall (0.04 sec)
-
guava/src/com/google/common/collect/DiscreteDomain.java
} private static final class BigIntegerDomain extends DiscreteDomain<BigInteger> implements Serializable { private static final BigIntegerDomain INSTANCE = new BigIntegerDomain(); BigIntegerDomain() { super(true); } private static final BigInteger MIN_LONG = BigInteger.valueOf(Long.MIN_VALUE); private static final BigInteger MAX_LONG = BigInteger.valueOf(Long.MAX_VALUE);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 20:54:22 UTC 2025 - 16.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/PackageSanityTests.java
private static final ImmutableGraph<String> IMMUTABLE_GRAPH_B = GraphBuilder.directed().<String>immutable().addNode("B").build(); private static final NetworkBuilder<?, ?> networkBuilderA = NetworkBuilder.directed().allowsParallelEdges(true).expectedNodeCount(10); private static final NetworkBuilder<?, ?> networkBuilderB = NetworkBuilder.directed().allowsSelfLoops(true).expectedNodeCount(16);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 3.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Charsets.java
* @author Mike Bostock * @since 1.0 */ @GwtCompatible public final class Charsets { /** * US-ASCII: seven-bit ASCII, the Basic Latin block of the Unicode character set (ISO646-US). * * @deprecated Use {@link StandardCharsets#US_ASCII} instead. */ @Deprecated @J2ktIncompatible @GwtIncompatible // Charset not supported by GWT public static final Charset US_ASCII = StandardCharsets.US_ASCII; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/outside/AnnotatedNotAbstractInSuperclassTest.java
static class SuperClass { final List<Object> notOverriddenInSubclassEvents = new ArrayList<>(); final List<Object> overriddenNotAnnotatedInSubclassEvents = new ArrayList<>(); final List<Object> overriddenAndAnnotatedInSubclassEvents = new ArrayList<>(); final List<Object> differentlyOverriddenNotAnnotatedInSubclassBadEvents = new ArrayList<>();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.java
*/ public final int getTflags() { return this.tflags; } /** * Get the array of referral entries * * @return the referrals */ public final Referral[] getReferrals() { return this.referrals; } @Override public int decode(final byte[] buffer, int bufferIndex, final int len) { final int start = bufferIndex;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java
exception.expectMessage(is("remove")); final Vector<String> vector = new Vector<String>(); vector.add("a"); final EnumerationIterator<String> itr = new EnumerationIterator<String>(vector.elements()); itr.remove(); } /** * @throws Exception */ @Test public void testNext() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableRangeMap.java
} /** * A builder for immutable range maps. Overlapping ranges are prohibited. * * @since 14.0 */ @DoNotMock public static final class Builder<K extends Comparable<?>, V> { private final List<Entry<Range<K>, V>> entries; public Builder() { this.entries = new ArrayList<>(); } /** * Associates the specified range with the specified value.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 14.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Cut.java
static <C extends Comparable> Cut<C> belowAll() { return (Cut<C>) BelowAll.INSTANCE; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; private static final class BelowAll extends Cut<Comparable<?>> { private static final BelowAll INSTANCE = new BelowAll(); private BelowAll() { /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsDataConfigCQ.java
public void functionScore(OperatorCall<DataConfigCQ> queryLambda, ScoreFunctionCall<ScoreFunctionCreator<DataConfigCQ>> functionsLambda, final ConditionOptionCall<FunctionScoreQueryBuilder> opLambda) { DataConfigCQ cq = new DataConfigCQ(); queryLambda.callback(cq); final Collection<FilterFunctionBuilder> list = new ArrayList<>(); if (functionsLambda != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 108.9K bytes - Viewed (0)