- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 2,270 for SET (0.01 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java
this.artifact = artifact; return this; } public ArtifactResolutionRequest setArtifactDependencies(Set<Artifact> artifactDependencies) { this.artifactDependencies = artifactDependencies; return this; } public Set<Artifact> getArtifactDependencies() { return artifactDependencies; } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.3K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java
import java.util.AbstractMap; import java.util.AbstractSet; import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.NoSuchElementException; import java.util.Set; import java.util.function.BiFunction; import java.util.function.Function; import java.util.function.Predicate; /** * This should be removed when https://bugs.openjdk.org/browse/JDK-8323729
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 07 11:47:42 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java
addEdge(N1, N2, E12); Set<Integer> n1AdjacentNodes = network.adjacentNodes(N1); Set<Integer> n2AdjacentNodes = network.adjacentNodes(N2); Set<Integer> n1Predecessors = network.predecessors(N1); Set<Integer> n2Predecessors = network.predecessors(N2); Set<Integer> n1Successors = network.successors(N1); Set<Integer> n2Successors = network.successors(N2); Set<String> n1IncidentEdges = network.incidentEdges(N1);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 32.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryProcessorTest.java
called.set(false); calledFirst.set(false); final AtomicBoolean calledSecond = new AtomicBoolean(false); queryProcessor.addFilter(new QueryProcessor.Filter() { @Override public QueryBuilder execute(QueryContext context, Query query, float boost, FilterChain chain) { calledSecond.set(true); assertFalse(called.get());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.5K bytes - Viewed (0) -
docs/bucket/notifications/README.md
routing_key (string) routing key for publishing mandatory (on|off) quietly ignore undelivered messages when set to 'off', default is 'on' durable (on|off) persist queue across broker restarts when set to 'on', default is 'off' no_wait (on|off) non-blocking message delivery when set to 'on', default is 'off' internal (on|off) set to 'on' for exchange to be not used directly by publishers, but only when bound to other exchanges
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 84.2K bytes - Viewed (0) -
docs/tr/docs/python-types.md
#### `Tuple` ve `Set` `Tuple` ve `set`lerin tiplerini bildirmek için de aynısını yapıyoruz: {* ../../docs_src/python_types/tutorial007.py hl[1,4] *} Bu şu anlama geliyor: * `items_t` değişkeni sırasıyla `int`, `int`, ve `str` tiplerinden oluşan bir `tuple` türündedir . * `items_s` ise her öğesi `bytes` türünde olan bir `set` örneğidir. #### `Dict`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java
* </ol> * * @param set the presumed-immutable set * @param sampleElement an element of the same type as that contained by {@code set}. {@code set} * may or may not have {@code sampleElement} as a member. */ public static <E extends @Nullable Object> void assertSetIsUnmodifiable( Set<E> set, E sampleElement) { assertCollectionIsUnmodifiable(set, sampleElement); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 14.8K bytes - Viewed (0) -
docs/uk/docs/python-types.md
Зверніть увагу, що змінна `item` є одним із елементів у списку `items`. І все ж редактор знає, що це `str`, і надає підтримку для цього. #### Tuple and Set (кортеж та набір) Ви повинні зробити те ж саме, щоб оголосити `tuple` і `set`: //// tab | Python 3.8 і вище ```Python hl_lines="1 4" {!> ../../docs_src/python_types/tutorial007.py!} ``` //// //// tab | Python 3.9 і вище
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 19.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
} } else { // set on the future completed assertFalse(cancellationSuccess.get()); assertTrue(setFutureSetSuccess.get()); assertTrue(setFutureCompletionSuccess.get()); } // reset for next iteration setFutureSetSuccess.set(false); setFutureCompletionSuccess.set(false); cancellationSuccess.set(false); finalResults.clear(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java
request = new Smb2QueryInfoRequest(mockConfig); byte testFileInfoClass = (byte) 0x10; request.setFileInfoClass(testFileInfoClass); // Verify file info class was set and info type was set to SMB2_0_INFO_FILE try { Field fileInfoClassField = Smb2QueryInfoRequest.class.getDeclaredField("fileInfoClass"); fileInfoClassField.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0)