Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for mergeInt (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultInstrumentedClosuresTracker.java

        private final Object2IntMap<InstrumentableClosure> currentClosuresEntries = new Object2IntOpenHashMap<>();
    
        @Override
        public void enterClosure(InstrumentableClosure thisClosure) {
            currentClosuresEntries.mergeInt(thisClosure, 1, Integer::sum);
        }
    
        @Override
        public void leaveClosure(InstrumentableClosure thisClosure) {
            currentClosuresEntries.computeInt(thisClosure, (key, oldValue) -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:58:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/SublistMerger.kt

        }
    }
    
    public fun <A : Any> List<A>.mergeInto(destination: MutableList<A>, f: SublistMerger<A>.() -> Unit) {
        SublistMerger(this, destination).apply {
            f()
            finish()
        }
    }
    
    public fun <A : Any> List<A>.mergeWith(f: SublistMerger<A>.() -> Unit): List<A> =
        mutableListOf<A>().also { destination -> mergeInto(destination, f) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/CompositeNodeGroup.java

        private final boolean reachableFromEntryPoint;
    
        public static HasFinalizers mergeInto(OrdinalGroup original, HasFinalizers finalizers) {
            return new CompositeNodeGroup(original.isReachableFromEntryPoint() || finalizers.isReachableFromEntryPoint(), original, finalizers.getFinalizerGroups());
        }
    
        public static HasFinalizers mergeInto(HasFinalizers original, HasFinalizers finalizers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pkg/proto/merge/merge.go

    			o.mergeList(dst.Mutable(fd).List(), v.List(), fd)
    		case fd.IsMap():
    			o.mergeMap(dst.Mutable(fd).Map(), v.Map(), fd.MapValue())
    		case fd.Message() != nil:
    			mergeFn, exists := o.customMergeFn[fd.Message().FullName()]
    			if exists {
    				mergeFn(dst.Mutable(fd).Message(), v.Message())
    			} else {
    				o.mergeMessage(dst.Mutable(fd).Message(), v.Message())
    			}
    		case fd.Kind() == protoreflect.BytesKind:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 17:31:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/intervals.go

    func (i1 Interval) adjacent(i2 Interval) bool {
    	return i1.en == i2.st || i2.en == i1.st
    }
    
    // MergeInto merges interval i2 into i1. This version happens to
    // require that the two intervals either overlap or are adjacent.
    func (i1 *Interval) MergeInto(i2 Interval) error {
    	if !i1.Overlaps(i2) && !i1.adjacent(i2) {
    		return fmt.Errorf("merge method invoked on non-overlapping/non-adjacent")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

                return finalizers;
            }
            if (current instanceof OrdinalGroup) {
                return CompositeNodeGroup.mergeInto((OrdinalGroup) current, finalizers);
            } else {
                return CompositeNodeGroup.mergeInto((HasFinalizers) current, finalizers);
            }
        }
    
        /**
         * Maybe update the group for this node when its dependencies are in groups with higher ordinal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  7. docs/de/docs/fastapi-people.md

    ## Top-Mitwirkende
    
    Hier sind die **Top-Mitwirkenden**. 👷
    
    Diese Benutzer haben [die meisten Pull Requests erstellt](help-fastapi.md#einen-pull-request-erstellen){.internal-link target=_blank} welche *<abbr title="Mergen – Zusammenführen: Unterschiedliche Versionen eines Quellcodes zusammenführen">gemerged</abbr>* wurden.
    
    Sie haben Quellcode, Dokumentation, Übersetzungen, usw. beigesteuert. 📦
    
    {% if people %}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/policy.go

    	//   3. current.NUMANodeAffinity.Count() <  bestNonPreferredAffinityCount
    	//
    	// For case (1), the current bestHint is larger than the
    	// bestNonPreferredAffinityCount, so updating to fitter mergeHint
    	// is preferred over staying where we are.
    	//
    	// For case (2), the current bestHint is equal to the
    	// bestNonPreferredAffinityCount, so we would like to stick with what
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

      auto buffer_type = buffer.getType().cast<RankedTensorType>();
      if (buffer_type.getShape().size() <= 1) {
        return concat.emitOpError("cannot concat on scalar-element tensor array");
      }
      // Merget he first two dimensions.
      auto shape = llvm::to_vector<8>(buffer_type.getShape().drop_front());
      shape[0] *= buffer_type.getDimSize(0);
      buffer = builder.create<TF::ReshapeOp>(
          concat.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  10. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    sqrt(II - RR) to sqrt(8)RR, in which case NE will be to ND, as 3R to I. And so the Angle which the next emergent Ray (that is, the emergent Ray after three Reflexions) contains with the incident Ray AN will come to its Limit when ND is to CN as sqrt(II - RR) to sqrt(15)RR, in which case NE will be to ND as 4R to I. And the Angle which the Ray next after that Emergent, that is, the Ray emergent after four Reflexions, contains with the Incident, will come to its Limit, when ND is to CN as sqrt(II -...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top