Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 138 for Intersect (0.13 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    	umin, umax uint64 // umin <= value <= umax, unsigned
    }
    
    func (l limit) String() string {
    	return fmt.Sprintf("sm,SM,um,UM=%d,%d,%d,%d", l.min, l.max, l.umin, l.umax)
    }
    
    func (l limit) intersect(l2 limit) limit {
    	if l.min < l2.min {
    		l.min = l2.min
    	}
    	if l.umin < l2.umin {
    		l.umin = l2.umin
    	}
    	if l.max > l2.max {
    		l.max = l2.max
    	}
    	if l.umax > l2.umax {
    		l.umax = l2.umax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/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 Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                        .union(parentAncestorsStrictVersionConstraints)
                        .union(parentEndorsedStrictVersionConstraints);
                } else {
                    constraints = constraints.intersect(
                        parentStrictVersionConstraints
                            .union(parentAncestorsStrictVersionConstraints)
                            .union(parentEndorsedStrictVersionConstraints)
                    );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string",
              "default": ""
            }
          }
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/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.
      // Required.
      optional string Expression = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. 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)
Back to top