- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for Intersection (0.45 sec)
-
android/guava/src/com/google/common/collect/Sets.java
* * // impossible for a non-String to be in the intersection * SuppressWarnings("unchecked") * Set<String> badStrings = (Set) Sets.intersection( * aFewBadObjects, manyBadStrings); * } * * <p>This is unfortunate, but should come up only very rarely. */ public static <E extends @Nullable Object> SetView<E> intersection(Set<E> set1, Set<?> set2) { checkNotNull(set1, "set1");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0) -
cmd/bucket-handlers.go
if dnsBuckets != nil { for _, bucket := range buckets { bucketsSet.Add(bucket) r, ok := dnsBuckets[bucket] if !ok { bucketsToBeUpdated.Add(bucket) continue } if !globalDomainIPs.Intersection(set.CreateStringSet(getHostsSlice(r)...)).IsEmpty() { if globalDomainIPs.Difference(set.CreateStringSet(getHostsSlice(r)...)).IsEmpty() && !domainMissing { // No difference in terms of domainIPs and nothing
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.9K bytes - Viewed (0) -
cmd/iam-store.go
err = errNoSuchPolicy return } } newPolicySet = existingPolicySet.Union(policiesToUpdate) } else { // policies to detach => inputPolicies ∩ existing (intersection) policiesToUpdate = policiesToUpdate.Intersection(existingPolicySet) newPolicySet = existingPolicySet.Difference(policiesToUpdate) } // We return an error if the requested policy update will have no effect.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 86.7K bytes - Viewed (0)