- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 717 for failed (0.04 sec)
-
Equivalence.java
L106: } L107: return doHash(t); L108: } L109: L110: /** L111: * Implemented by the user to return a hash code for {@code t}, subject to the requirements L112: * specified in {@link #hash}. L113: * L114: * <p>This method should not be called except by {@link #hash}. When {@link #hash} calls this L115: * method, {@code t} is guaranteed to be non-null. L116: * L117: * @since 10.0 (previously, subclasses would override hash()) L118: */ L119: @ForOverride L120: protected abstract...github.com/google/guava/android/guava/src/com/g...Thu May 16 14:34:47 UTC 2024 13.8K bytes -
TableCollectionTest.java
L827: } L828: L829: @Override L830: protected Map<Integer, Character> getValueNotInPopulatedMap() { L831: return ImmutableMap.of(); L832: } L833: L834: /** L835: * The version of this test supplied by {@link MapInterfaceTest} fails for this particular map L836: * implementation, because {@code map.get()} returns a view collection that changes in the L837: * course of a call to {@code remove()}. Thus, the expectation doesn't hold that {@code L838: * map.remove(x)}...github.com/google/guava/android/guava-tests/tes...Wed Oct 30 16:15:19 UTC 2024 35.2K bytes -
TableCollectionTest.java
L827: } L828: L829: @Override L830: protected Map<Integer, Character> getValueNotInPopulatedMap() { L831: return ImmutableMap.of(); L832: } L833: L834: /** L835: * The version of this test supplied by {@link MapInterfaceTest} fails for this particular map L836: * implementation, because {@code map.get()} returns a view collection that changes in the L837: * course of a call to {@code remove()}. Thus, the expectation doesn't hold that {@code L838: * map.remove(x)}...github.com/google/guava/guava-tests/test/com/go...Wed Oct 30 16:15:19 UTC 2024 35.2K bytes -
LocalCache.java
* Implementation for the EntryIterator, which is used to build Key and Value iterators. L551: * L552: * <p>Expiration is only checked on hasNext(), so as to ensure that a next() call never returns L553: * null when hasNext() has already been called. L554: */ L555: class EntryIterator implements Iterator<Entry<K, V>> { L556: Iterator<Entry<K, Timestamped<V>>> iterator; L557: Entry<K, Timestamped<V>> lastEntry; L558: Entry<K, Timestamped<V>> nextEntry; L559: L560: EntryIterator()...github.com/google/guava/guava-gwt/src-super/com...Tue Feb 27 19:19:19 UTC 2024 21.6K bytes -
Collections2.java
given an element that doesn't satisfy the predicate, the L66: * collection's {@code add()} and {@code addAll()} methods throw an {@link L67: * IllegalArgumentException}. When methods such as {@code removeAll()} and {@code clear()} are L68: * called on the filtered collection, only elements that satisfy the filter will be removed from L69: * the underlying collection. L70: * L71: * <p>The returned collection isn't threadsafe or serializable, even if {@code unfiltered} is. L72: * L73:...github.com/google/guava/android/guava/src/com/g...Fri Oct 18 20:24:49 UTC 2024 22.8K bytes -
gradle-wrapper.jar
void Install(Logger, Download, PathAssembler); public static Install$InstallCheck access$000(Install, java.io.File, String); public static void verifyDownloadChecks(String, java.io.File, String); public static boolean deleteDir(java.io.File); public static void unzip(java.io.File, java.io.File); public final void unzipLocal(java.io.File, java.io.File); public final void forceFetch(java.io.File, java.net.URI); } org/gradle/wrapper/Logger.class package org.gradle.wrapper; public final synchronized class...github.com/square/okhttp/gradle/wrapper/gradle-...Sun Dec 24 09:00:26 UTC 2023 42.4K bytes -
Range.java
this range and {@code L587: * other}. For example, the span of {@code [1..3]} and {@code (5..7)} is {@code [1..7)}. L588: * L589: * <p><i>If</i> the input ranges are {@linkplain #isConnected connected}, the returned range can L590: * also be called their <i>union</i>. If they are not, note that the span might contain values L591: * that are not contained in either input range. L592: * L593: * <p>Like {@link #intersection(Range) intersection}, this operation is commutative, associative...github.com/google/guava/android/guava/src/com/g...Wed Oct 16 17:21:56 UTC 2024 27.8K bytes -
GeneratedMonitorTest.java
methods but behave like tryEnterXxx in some scenarios. L175: */ L176: private static boolean isEnterIf(Method method) { L177: return method.getName().startsWith("enterIf"); L178: } L179: L180: /** Identifies all waitForXxx methods, which must be called while occupying the monitor. */ L181: private static boolean isWaitFor(Method method) { L182: return method.getName().startsWith("waitFor"); L183: } L184: L185: /** Determines whether the given method takes a Guard as its first parameter. */...github.com/google/guava/android/guava-tests/tes...Sat Oct 19 00:51:36 UTC 2024 27.1K bytes -
HttpOverHttp2Test.kt
L1654: client.newBuilder() L1655: .readTimeout(Duration.ofSeconds(10)) // Confirm we fail before the read timeout. L1656: .pingInterval(Duration.ofMillis(500)) L1657: .build() L1658: L1659: // Set up the server to ignore the socket. It won't respond to pings! L1660: server.enqueue(MockResponse(socketPolicy = StallSocketAtStart)) L1661: L1662: // Make a call. It'll fail as soon as our pings detect a problem. L1663: val call = client.newCall(Request(server.url("/")))...github.com/square/okhttp/okhttp/src/test/java/o...Thu Apr 11 22:09:35 UTC 2024 75.3K bytes -
EsAbstractBehavior.java
final Entity entity = entityList.get(i); L471: if (entity instanceof EsAbstractEntity) { L472: ((EsAbstractEntity) entity).asDocMeta().id(itemResponse.getId()); L473: } L474: results[i] = itemResponse.isFailed() ? 0 : 1; L475: } L476: return results; L477: } L478: L479: // to suppress xacceptUpdateColumnModifiedPropertiesIfNeeds()'s specify process L480: @Override L481: protected UpdateOption<CB> createPlainUpdateOption() { L482:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 26.4K bytes