Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 239 for intervention (2.84 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/MultisetSetCountConditionallyTester.java

      }
    
      /*
       * TODO: test that unmodifiable multisets either throw UOE or return false
       * when both are valid options. Currently we test the UOE cases and the
       * return-false cases but not their intersection
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 15:08:35 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeDescriberSelector.java

            AttributeDescriber current = null;
            int maxSize = 0;
            for (AttributeDescriber consumerDescriber : consumerDescribers) {
                int size = Sets.intersection(consumerDescriber.getDescribableAttributes(), consumerAttributeSet).size();
                if (size > maxSize) {
                    // Select the describer which handles the maximum number of attributes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

        Multiset<String> ms2 = HashMultiset.create(Arrays.asList("a", "b", "a"));
        assertThat(Multisets.intersection(ms1, ms2)).isEmpty();
      }
    
      public void testIntersectNonemptyEmpty() {
        Multiset<String> ms1 = HashMultiset.create(Arrays.asList("a", "b", "a"));
        Multiset<String> ms2 = HashMultiset.create();
        assertThat(Multisets.intersection(ms1, ms2)).isEmpty();
      }
    
      public void testSum() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/GeneralRange.java

      }
    
      boolean contains(@ParametricNullness T t) {
        return !tooLow(t) && !tooHigh(t);
      }
    
      /**
       * Returns the intersection of the two ranges, or an empty range if their intersection is empty.
       */
      @SuppressWarnings("nullness") // TODO(cpovirk): Add casts as needed. Will be noisy and annoying...
      GeneralRange<T> intersect(GeneralRange<T> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

        }
        // add the intersection of CollectionFeature.values() and mapFeatures
        for (CollectionFeature feature : CollectionFeature.values()) {
          if (mapFeatures.contains(feature)) {
            derivedFeatures.add(feature);
          }
        }
        // add the intersection of CollectionSize.values() and mapFeatures
        for (CollectionSize size : CollectionSize.values()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapDifference.java

       * present in the left map.
       */
      Map<K, V> entriesOnlyOnRight();
    
      /**
       * Returns an unmodifiable map containing the entries that appear in both maps; that is, the
       * intersection of the two maps.
       */
      Map<K, V> entriesInCommon();
    
      /**
       * Returns an unmodifiable map describing keys that appear in both maps, but with different
       * values.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. pkg/controller/resourcequota/resource_quota_controller.go

    		if _, usageFound := resourceQuota.Status.Used[constraint]; !usageFound {
    			matchedResources := []v1.ResourceName{constraint}
    			for _, evaluator := range rq.registry.List() {
    				if intersection := evaluator.MatchingResources(matchedResources); len(intersection) > 0 {
    					rq.missingUsageQueue.Add(key)
    					return
    				}
    			}
    		}
    	}
    
    	// no special priority, go in normal recalc queue
    	rq.queue.Add(key)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

         * The returned CallSite instance will perform the actual interception.
         *
         * @param originalCallSite the CallSite to decorate
         * @return the new CallSite capable of intercepting calls or the original CallSite if interception not neccessary.
         */
        @Override
        public CallSite maybeDecorateGroovyCallSite(CallSite originalCallSite) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/EmptyContiguousSet.java

      }
    
      @Override
      public C last() {
        throw new NoSuchElementException();
      }
    
      @Override
      public int size() {
        return 0;
      }
    
      @Override
      public ContiguousSet<C> intersection(ContiguousSet<C> other) {
        return this;
      }
    
      @Override
      public Range<C> range() {
        throw new NoSuchElementException();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 28 18:35:00 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/internal/types/testdata/examples/constraints.go

    	_[T interface{ int|T /* ERROR "term cannot be a type parameter" */ }] struct{}
    )
    
    // Multiple embedded union elements are intersected. The order in which they
    // appear in the interface doesn't matter since intersection is a symmetric
    // operation.
    
    type myInt1 int
    type myInt2 int
    
    func _[T interface{ myInt1|myInt2; ~int }]() T { return T(0) }
    func _[T interface{ ~int; myInt1|myInt2 }]() T { return T(0) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top