Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Intersect (2.94 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"message":           "Message represents the message displayed when validation fails. The message is required if the Expression contains...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"message":           "Message represents the message displayed when validation fails. The message is required if the Expression contains...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    		},
    		{
    			expr:                `sets.intersects([1], [1])`,
    			expectEstimatedCost: checker.CostEstimate{Min: 22, Max: 22},
    			expectRuntimeCost:   22,
    		},
    		{
    			expr:                `sets.intersects([1], [1, 1])`,
    			expectEstimatedCost: checker.CostEstimate{Min: 23, Max: 23},
    			expectRuntimeCost:   23,
    		},
    		{
    			expr:                `sets.intersects([1, 1], [1])`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RangeSet.java

       * range set and the specified range. This is equivalent to calling {@code
       * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty.
       *
       * @since 20.0
       */
      boolean intersects(Range<C> otherRange);
    
      /**
       * Returns {@code true} if there exists a member range in this range set which {@linkplain
       * Range#encloses encloses} the specified range.
       */
      boolean encloses(Range<C> otherRange);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RangeSet.java

       * range set and the specified range. This is equivalent to calling {@code
       * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty.
       *
       * @since 20.0
       */
      boolean intersects(Range<C> otherRange);
    
      /**
       * Returns {@code true} if there exists a member range in this range set which {@linkplain
       * Range#encloses encloses} the specified range.
       */
      boolean encloses(Range<C> otherRange);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

        this.ranges = ranges;
        this.complement = complement;
      }
    
      private final transient ImmutableList<Range<C>> ranges;
    
      @Override
      public boolean intersects(Range<C> otherRange) {
        int ceilingIndex =
            SortedLists.binarySearch(
                ranges,
                Range::lowerBound,
                otherRange.lowerBound,
                Ordering.natural(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableRangeSet.java

        this.ranges = ranges;
        this.complement = complement;
      }
    
      private final transient ImmutableList<Range<C>> ranges;
    
      @Override
      public boolean intersects(Range<C> otherRange) {
        int ceilingIndex =
            SortedLists.binarySearch(
                ranges,
                Range::lowerBound,
                otherRange.lowerBound,
                Ordering.natural(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top