Search Options

Results per page
Sort
Preferred Languages
Advance

Results 611 - 620 of 681 for delete (0.03 sec)

  1. ArrayListMultimapTest.java

    ceValues("foo", asList(2, 4)) instanceof RandomAccess); L107: assertTrue(multimap.replaceValues("bar", asList(2, 4)) instanceof RandomAccess); L108: } L109: L110: /** Test throwing ConcurrentModificationException when a sublist's ancestor's delegate changes. */ L111: public void testSublistConcurrentModificationException() { L112: ListMultimap<String, Integer> multimap = create(); L113: multimap.putAll("foo", asList(1, 2, 3, 4, 5)); L114: List<Integer> list = multimap.get("foo"); L115:...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Oct 15 17:36:06 UTC 2024
      6.5K bytes
  2. ByteSink.java

    throws IOException; L74: L75: /** L76: * Opens a new buffered {@link OutputStream} for writing to this sink. The returned stream is not L77: * required to be a {@link BufferedOutputStream} in order to allow implementations to simply L78: * delegate to {@link #openStream()} when the stream returned by that method does not benefit from L79: * additional buffering (for example, a {@code ByteArrayOutputStream}). This method returns a new, L80: * independent stream each time it is called. L81:...
    github.com/google/guava/guava/src/com/google/co...
    Mon Oct 28 16:55:09 UTC 2024
      5K bytes
  3. DescendingMultiset.java

    public SortedMultiset<E> tailMultiset(@ParametricNullness E fromElement, BoundType boundType) { L93: return forwardMultiset().headMultiset(fromElement, boundType).descendingMultiset(); L94: } L95: L96: @Override L97: protected Multiset<E> delegate() { L98: return forwardMultiset(); L99: } L100: L101: @Override L102: public SortedMultiset<E> descendingMultiset() { L103: return forwardMultiset(); L104: } L105: L106: @Override L107: @CheckForNull L108: public Entry<E> firstEntry()...
    github.com/google/guava/guava/src/com/google/co...
    Mon Jun 26 21:02:13 UTC 2023
      4.5K bytes
  4. TraverserTest.java

    L1220: private final SuccessorsFunction<Character> delegate; L1221: final Multiset<Character> requestedNodes = HashMultiset.create(); L1222: L1223: RequestSavingGraph(SuccessorsFunction<Character> delegate) { L1224: this.delegate = checkNotNull(delegate); L1225: } L1226: L1227: @Override L1228: public Iterable<? extends Character> successors(Character node) { L1229: requestedNodes.add(node); L1230: return delegate.successors(node); L1231: } L1232: } L1233: L1234:...
    github.com/google/guava/android/guava-tests/tes...
    Wed Sep 06 17:04:31 UTC 2023
      47.5K bytes
  5. TraverserTest.java

    L1220: private final SuccessorsFunction<Character> delegate; L1221: final Multiset<Character> requestedNodes = HashMultiset.create(); L1222: L1223: RequestSavingGraph(SuccessorsFunction<Character> delegate) { L1224: this.delegate = checkNotNull(delegate); L1225: } L1226: L1227: @Override L1228: public Iterable<? extends Character> successors(Character node) { L1229: requestedNodes.add(node); L1230: return delegate.successors(node); L1231: } L1232: } L1233: L1234:...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Sep 06 17:04:31 UTC 2023
      47.5K bytes
  6. package-info.java

    L102: * <li>{@link UnmodifiableIterator} L103: * <li>{@link UnmodifiableListIterator} L104: * </ul> L105: * L106: * <h2>Forwarding collections</h2> L107: * L108: * We provide implementations of collections that forward all method calls to a delegate collection L109: * by default. Subclasses can override one or more methods to implement the decorator pattern. For L110: * an example, see {@link ForwardingCollection}. L111: * L112: * <h2>Other</h2> L113: * L114: * <ul> L115: * <li>{@link EvictingQueue}...
    github.com/google/guava/android/guava/src/com/g...
    Thu Jul 06 16:29:45 UTC 2023
      5K bytes
  7. package-info.java

    L102: * <li>{@link UnmodifiableIterator} L103: * <li>{@link UnmodifiableListIterator} L104: * </ul> L105: * L106: * <h2>Forwarding collections</h2> L107: * L108: * We provide implementations of collections that forward all method calls to a delegate collection L109: * by default. Subclasses can override one or more methods to implement the decorator pattern. For L110: * an example, see {@link ForwardingCollection}. L111: * L112: * <h2>Other</h2> L113: * L114: * <ul> L115: * <li>{@link EvictingQueue}...
    github.com/google/guava/guava/src/com/google/co...
    Thu Jul 06 16:29:45 UTC 2023
      5K bytes
  8. AbstractImmutableSetTest.java

    %s", L492: byAscendingSize, startIndex, inputIsSet), L493: e); L494: } L495: /* L496: * TODO(cpovirk): Check that the values match one of candidates that L497: * MutatedOnQuery*.delegate() actually returned during this test? L498: */ L499: assertWithMessage( L500: "byAscendingSize %s, startIndex %s, inputIsSet %s", L501: byAscendingSize, startIndex, inputIsSet) L502: ...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      18.5K bytes
  9. fess_message_de.properties

    L61:# five framework-embedded messages (don't change key names) L62:# - - - - - - - - - -/ L63:errors.login.failure=Login fehlgeschlagen. L64:errors.app.illegal.transition=Unzulässige Wertänderung, bitte erneut versuchen. L65:errors.app.db.already.deleted=Bearbeitungskonflikt, bitte erneut versuchen. L66:errors.app.db.already.updated=Bearbeitungskonflikt, bitte erneut versuchen. L67:errors.app.db.already.exists=Daten existieren bereits, bitte erneut versuchen. L68:errors.app.double.submit.request=Deine...
    github.com/codelibs/fess/src/main/resources/fes...
    Tue Oct 29 15:01:03 UTC 2019
      11.8K bytes
  10. TestsForMapsInJavaUtil.java

    TestStringSortedMapGenerator() { L375: @Override L376: protected SortedMap<String, String> create(Entry<String, String>[] entries) { L377: NavigableMap<String, String> delegate = populate(new TreeMap<>(), entries); L378: return Collections.synchronizedNavigableMap(delegate); L379: } L380: }) L381: .named("synchronizedNavigableMap/TreeMap, natural") L382: .withFeatures( L383: MapFeature.GENERAL_PURPOSE, L384: ...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      21.6K bytes
Back to top