Search Options

Results per page
Sort
Preferred Languages
Advance

Results 531 - 540 of 717 for failed (0.07 sec)

  1. FeatureSpecificTestSuiteBuilder.java

    tearDown; L103: } L104: L105: // Features L106: L107: private final Set<Feature<?>> features = new LinkedHashSet<>(); L108: L109: /** L110: * Configures this builder to produce tests appropriate for the given features. This method may be L111: * called more than once to add features in multiple groups. L112: */ L113: @CanIgnoreReturnValue L114: public B withFeatures(Feature<?>... features) { L115: return withFeatures(asList(features)); L116: } L117: L118: @CanIgnoreReturnValue L119: public...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      10.4K bytes
  2. AbstractIteratorTest.java

    AbstractIterator<Integer>() { L169: boolean haveBeenCalled; L170: L171: @Override L172: public Integer computeNext() { L173: if (haveBeenCalled) { L174: throw new AssertionError("Should not have been called again"); L175: } else { L176: haveBeenCalled = true; L177: sneakyThrow(new SomeCheckedException()); L178: throw new AssertionError(); // unreachable L179: } L180: } L181: ...
    github.com/google/guava/android/guava-tests/tes...
    Tue Oct 15 17:36:06 UTC 2024
      8.1K bytes
  3. AbstractIteratorTest.java

    AbstractIterator<Integer>() { L169: boolean haveBeenCalled; L170: L171: @Override L172: public Integer computeNext() { L173: if (haveBeenCalled) { L174: throw new AssertionError("Should not have been called again"); L175: } else { L176: haveBeenCalled = true; L177: sneakyThrow(new SomeCheckedException()); L178: throw new AssertionError(); // unreachable L179: } L180: } L181: ...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Oct 15 17:36:06 UTC 2024
      8.1K bytes
  4. JdkBackedImmutableMap.java

    later entries with the same key should L50: // be deleted. L51: Map<K, @Nullable V> duplicates = null; L52: int dupCount = 0; L53: for (int i = 0; i < n; i++) { L54: // requireNonNull is safe because the first `n` elements have been filled in. L55: entryArray[i] = makeImmutable(requireNonNull(entryArray[i])); L56: K key = entryArray[i].getKey(); L57: V value = entryArray[i].getValue(); L58: V oldValue = delegateMap.put(key, value); L59: if (oldValue != null)...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      4.8K bytes
  5. LICENSE

    L105: L106: (d) If the Work includes a "NOTICE" text file as part of its L107: distribution, then any Derivative Works that You distribute must L108: include a readable copy of the attribution notices contained L109: within such NOTICE file, excluding those notices that do not L110: pertain to any part of the Derivative Works, in at least one L111: of the following places: within a NOTICE text file distributed L112: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Thu Oct 31 17:42:39 UTC 2024
      11.1K bytes
  6. LICENSE

    L107: L108: (d) If the Work includes a "NOTICE" text file as part of its L109: distribution, then any Derivative Works that You distribute must L110: include a readable copy of the attribution notices contained L111: within such NOTICE file, excluding those notices that do not L112: pertain to any part of the Derivative Works, in at least one L113: of the following places: within a NOTICE text file distributed L114: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/vendo...
    Fri May 08 04:49:00 UTC 2020
      11.2K bytes
  7. LICENSE.txt

    L106: L107: (d) If the Work includes a "NOTICE" text file as part of its L108: distribution, then any Derivative Works that You distribute must L109: include a readable copy of the attribution notices contained L110: within such NOTICE file, excluding those notices that do not L111: pertain to any part of the Derivative Works, in at least one L112: of the following places: within a NOTICE text file distributed L113: as part of the Derivative Works;...
    github.com/square/okhttp/LICENSE.txt
    Mon Jul 23 14:02:28 UTC 2012
      11.1K bytes
  8. MapComputeIfAbsentTester.java

    assertThrows( L138: UnsupportedOperationException.class, L139: () -> L140: getMap() L141: .computeIfAbsent( L142: k3(), L143: k -> { L144: // allowed to be called L145: assertEquals(k3(), k); L146: return v3(); L147: })); L148: expectUnchanged(); L149: } L150: L151: @MapFeature.Require(absent = SUPPORTS_PUT) L152: @CollectionSize.Require(absent...
    github.com/google/guava/android/guava-testlib/s...
    Thu Oct 31 14:51:04 UTC 2024
      6.7K bytes
  9. AbstractIdleService.java

    override L104: * this method to use a custom {@link Executor}, which may configure its worker thread with a L105: * specific name, thread group or priority. The returned executor's {@link L106: * Executor#execute(Runnable) execute()} method is called when this service is started and L107: * stopped, and should return promptly. L108: */ L109: protected Executor executor() { L110: return command -> MoreExecutors.newThread(threadNameSupplier.get(), command).start(); L111: } L112: L113: ...
    github.com/google/guava/android/guava/src/com/g...
    Mon Apr 17 13:59:28 UTC 2023
      5.3K bytes
  10. AbstractIteratorTest.java

    new AbstractIterator<Integer>() { L83: boolean haveBeenCalled; L84: L85: @Override L86: public Integer computeNext() { L87: if (haveBeenCalled) { L88: throw new AssertionError("Should not have been called again"); L89: } else { L90: haveBeenCalled = true; L91: sneakyThrow(new SomeCheckedException()); L92: throw new AssertionError(); // unreachable L93: } L94: } L95: }; L96:...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Sep 17 18:14:12 UTC 2024
      5.7K bytes
Back to top