- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 914 for iterate (0.09 sec)
-
guava/src/com/google/common/collect/ForwardingListMultimap.java
@Override public List<V> removeAll(@CheckForNull Object key) { return delegate().removeAll(key); } @CanIgnoreReturnValue @Override public List<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) { return delegate().replaceValues(key, values); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 2.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingSortedSetMultimap.java
} @Override public SortedSet<V> removeAll(@CheckForNull Object key) { return delegate().removeAll(key); } @Override public SortedSet<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) { return delegate().replaceValues(key, values); } @Override @CheckForNull public Comparator<? super V> valueComparator() { return delegate().valueComparator(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 2.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockTableRenderer.java
package gradlebuild.docs.dsl.docbook; import gradlebuild.docs.dsl.docbook.model.BlockDoc; import org.w3c.dom.Document; import org.w3c.dom.Element; public class BlockTableRenderer { public void renderTo(Iterable<BlockDoc> blocks, Element parent) { Document document = parent.getOwnerDocument(); // <thead> // <tr> // <td>Block</td> // <td>Description</td> // </tr>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyTableRenderer.java
package gradlebuild.docs.dsl.docbook; import gradlebuild.docs.dsl.docbook.model.PropertyDoc; import org.w3c.dom.Document; import org.w3c.dom.Element; public class PropertyTableRenderer { public void renderTo(Iterable<PropertyDoc> properties, Element parent) { Document document = parent.getOwnerDocument(); // <thead> // <tr> // <td>Property</td> // <td>Description</td>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.1K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesTest.groovy
} ] } """]) then: changes.acceptedChanges.size() == 1 def acceptedChange = changes.acceptedChanges.entrySet().iterator().next() def change = acceptedChange.key change.type == "org.gradle.api.initialization.ConfigurableIncludedBuild" change.member == "Implemented interface org.gradle.api.initialization.IncludedBuild"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jun 04 14:00:46 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.io; import static org.codelibs.core.collection.EnumerationIterator.iterable; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.io.File; import java.util.jar.JarEntry; import java.util.jar.JarFile; import java.util.zip.ZipEntry;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
* @since 4.0.0 */ Path getPomPath(); /** * Sets the POM file of the project to build. Note that providing the path to a POM file via this method will make * the model builder operate in project mode. This mode is meant for effective models that are employed during the * build process of a local project. Hence the effective model will support the notion of a project directory. To
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Cache.kt
cache.evictAll() } /** * Returns an iterator over the URLs in this cache. This iterator doesn't throw * `ConcurrentModificationException`, but if new responses are added while iterating, their URLs * will not be returned. If existing responses are evicted during iteration, they will be absent * (unless they were already returned). *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 26.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/SetsFilterSortedSetTest.java
import java.util.SortedSet; import java.util.TreeSet; public final class SetsFilterSortedSetTest extends AbstractFilteredSortedSetTest<SortedSet<Integer>> { @Override SortedSet<Integer> createUnfiltered(Iterable<Integer> contents) { final TreeSet<Integer> result = Sets.newTreeSet(contents); // we have to make the result not Navigable return new ForwardingSortedSet<Integer>() { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Mar 16 21:55:55 UTC 2022 - 1.4K bytes - Viewed (0) -
licenses/github.com/json-iterator/go/LICENSE
MIT License Copyright (c) 2016 json-iterator Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Oct 26 02:47:39 UTC 2019 - 1K bytes - Viewed (0)