Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for Intersect (0.73 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
      //     are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
      //     non-intersecting keys are appended, retaining their partial order.
      // Required.
      optional string Expression = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	//   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    	//     are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
    	//     non-intersecting keys are appended, retaining their partial order.
    	// Required.
    	Expression string `json:"expression" protobuf:"bytes,1,opt,name=Expression"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      //   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
      //     are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
      //     non-intersecting keys are appended, retaining their partial order.
      //
      // If `rule` makes use of the `oldSelf` variable it is implicitly a
      // `transition rule`.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      //   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
      //     are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
      //     non-intersecting keys are appended, retaining their partial order.
      //
      // If `rule` makes use of the `oldSelf` variable it is implicitly a
      // `transition rule`.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

    import spock.lang.Subject
    
    class IntersectionsTest extends Specification implements ExcludeTestSupport {
    
        @Subject
        private Intersections ops = new Intersections(factory)
    
        def "intersects identical specs"() {
            expect:
            ops.tryIntersect(spec, spec) == spec
    
            where:
            spec << [
                group("foo"),
                groupSet("foo", "bar"),
                module("foo"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top