- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 709 for failed (0.05 sec)
-
BsAccessToken.java
null) { L113: addFieldToSource(sourceMap, "updatedTime", updatedTime); L114: } L115: return sourceMap; L116: } L117: L118: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L119: sourceMap.put(field, value); L120: } L121: L122: // =================================================================================== L123: // Basic Override L124:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.5K bytes -
MapTestSuiteBuilderTests.java
value); L256: } L257: }; L258: } L259: }, L260: "HashMap w/out null values", L261: ALLOWS_NULL_KEYS); L262: } L263: L264: /** L265: * Map generator that verifies that {@code setUp()} methods are called in all the test cases. The L266: * {@code setUpRan} parameter is set true by the {@code setUp} that every test case is supposed to L267: * have registered, and set false by the {@code tearDown}. We use a dynamic proxy to intercept all L268: ...github.com/google/guava/android/guava-testlib/t...Wed Apr 19 19:24:36 UTC 2023 11.5K bytes -
Maps.java
V> newIdentityHashMap() { L488: return new IdentityHashMap<>(); L489: } L490: L491: /** L492: * Computes the difference between two maps. This difference is an immutable snapshot of the state L493: * of the maps at the time this method is called. It will never change, even if the maps change at L494: * a later time. L495: * L496: * <p>Since this method uses {@code HashMap} instances internally, the keys of the supplied maps L497: * must be well-behaved with respect to {@link Object#equals}...github.com/google/guava/android/guava/src/com/g...Sat Oct 19 00:05:46 UTC 2024 161.6K bytes -
Maps.java
V> newIdentityHashMap() { L489: return new IdentityHashMap<>(); L490: } L491: L492: /** L493: * Computes the difference between two maps. This difference is an immutable snapshot of the state L494: * of the maps at the time this method is called. It will never change, even if the maps change at L495: * a later time. L496: * L497: * <p>Since this method uses {@code HashMap} instances internally, the keys of the supplied maps L498: * must be well-behaved with respect to {@link Object#equals}...github.com/google/guava/guava/src/com/google/co...Sat Oct 19 00:05:46 UTC 2024 167.4K bytes -
RecordingConnectionListener.kt
L104: } L105: } L106: L107: private fun logEvent(e: ConnectionEvent) { L108: if (e.connection != null) { L109: assertThat(Thread.holdsLock(e.connection), "Called with lock $${e.connection}") L110: .isFalse() L111: } L112: for (lock in forbiddenLocks) { L113: assertThat(Thread.holdsLock(lock), "Called with lock $lock") L114: .isFalse() L115: } L116: L117: if (enforceOrder) { L118: checkForStartEvent(e) L119: } L120: L121: eventSequence.offer(e)...github.com/square/okhttp/okhttp-testing-support...Mon Jan 08 01:13:22 UTC 2024 5.6K bytes -
ParametricNullness.java
KIND, either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.xml; L18: L19:import static java.lang.annotation.ElementType.FIELD; L20:import static java.lang.annotation.ElementType.METHOD; L21:import static java.lang.annotation.ElementType.PARAMETER; L22:import static java.lang.annotation.RetentionPolicy.RUNTIME; L23: L24:import com.google.common.annotations.GwtCompatible; L25:import...github.com/google/guava/android/guava/src/com/g...Wed Aug 10 21:27:51 UTC 2022 4.1K bytes -
ParametricNullness.java
KIND, either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.io; L18: L19:import static java.lang.annotation.ElementType.FIELD; L20:import static java.lang.annotation.ElementType.METHOD; L21:import static java.lang.annotation.ElementType.PARAMETER; L22:import static java.lang.annotation.RetentionPolicy.RUNTIME; L23: L24:import com.google.common.annotations.GwtCompatible; L25:import...github.com/google/guava/guava/src/com/google/co...Wed Aug 10 21:27:51 UTC 2022 4.1K bytes -
UnmodifiableCollectionTests.java
L50: public static void assertMapEntryIsUnmodifiable(Entry<?, ?> entry) { L51: try { L52: // fine because the call is going to fail without modifying the entry L53: @SuppressWarnings("unchecked") L54: Entry<?, @Nullable Object> nullableValueEntry = (Entry<?, @Nullable Object>) entry; L55: nullableValueEntry.setValue(null); L56: fail("setValue on unmodifiable Map.Entry succeeded"); L57: } catch (UnsupportedOperationException expected) { L58: } L59: } L60: L61: ...github.com/google/guava/guava-testlib/src/com/g...Wed Oct 30 16:15:19 UTC 2024 14.8K bytes -
ImmutableRangeSet.java
will cause an exception when {@link #build()} is L785: * called. L786: */ L787: @CanIgnoreReturnValue L788: public Builder<C> addAll(RangeSet<C> ranges) { L789: return addAll(ranges.asRanges()); L790: } L791: L792: /** L793: * Add all of the specified ranges to this builder. Adjacent ranges are permitted and will be L794: * merged, but overlapping ranges will cause an exception when {@link #build()} is called. L795: * L796: * @throws IllegalArgumentException...github.com/google/guava/guava/src/com/google/co...Wed Oct 30 16:15:19 UTC 2024 27K bytes -
HashBiMap.java
lastInInsertionOrder = ENDPOINT; L135: L136: prevInInsertionOrder = createFilledWithAbsent(expectedSize); L137: nextInInsertionOrder = createFilledWithAbsent(expectedSize); L138: } L139: L140: /** Returns an int array of the specified size, filled with ABSENT. */ L141: private static int[] createFilledWithAbsent(int size) { L142: int[] array = new int[size]; L143: Arrays.fill(array, ABSENT); L144: return array; L145: } L146: L147: /** Equivalent to {@code Arrays.copyOf(array, newSize)},...github.com/google/guava/android/guava/src/com/g...Mon Mar 06 16:06:58 UTC 2023 36.4K bytes