Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Intersect (0.2 sec)

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

    		x0 := x // initial value in newState
    
    		// Intersect this slot with the slot in all the predecessors
    		for _, other := range preds {
    			if !updating && other.ID == baseID {
    				continue
    			}
    			otherSlot := blockLocs[other.ID].endState.Find(k)
    			if otherSlot == nil {
    				x = VarLoc{}
    				break
    			}
    			y := otherSlot.(*liveSlot).VarLoc
    			x = x.intersect(y)
    			if x.absent() {
    				x = VarLoc{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    					// Additionally also check if domain is updated/missing with more
    					// entries, if that is the case we should update the
    					// new domain entries as well.
    					continue
    				}
    
    				// if domain IPs intersect then it won't be an empty set.
    				// such an intersection means that bucket exists on etcd.
    				// but if we do see a difference with local domain IPs with
    				// hostSlice from etcd then we should update with newer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/admissionregistration/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.
      // Required.
      optional string Expression = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/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 May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top