Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 463 for iterations (0.22 sec)

  1. android/guava/src/com/google/common/collect/ImmutableMultiset.java

       * described in the class documentation.
       *
       * @throws NullPointerException if any of {@code elements} is null
       * @since 6.0
       */
      public static <E> ImmutableMultiset<E> copyOf(E[] elements) {
        return copyFromElements(elements);
      }
    
      /**
       * Returns an immutable multiset containing the given elements, in the "grouped iteration order"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        auto callee = table.lookup<TFRFuncOp>(call_op.getCallee());
        if (!callee || callee.isExternal()) return WalkResult::advance();
    
        // Record the boundary of the inlined operations. The inlined operation will
        // be inserted between these two operations.
        Operation* inlined_point = call_op.getOperation();
        Operation* after_inlined_point =
            &*std::next(Block::iterator(call_op.getOperation()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashMap.java

     * from uniform), and amortized since some operations can trigger a hash table resize.
     *
     * <p>Unlike {@code java.util.HashMap}, iteration is only proportional to the actual {@code size()},
     * which is optimal, and <i>not</i> the size of the internal hashtable, which could be much larger
     * than {@code size()}. Furthermore, this structure places significantly reduced load on the garbage
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashMap.java

     * from uniform), and amortized since some operations can trigger a hash table resize.
     *
     * <p>Unlike {@code java.util.HashMap}, iteration is only proportional to the actual {@code size()},
     * which is optimal, and <i>not</i> the size of the internal hashtable, which could be much larger
     * than {@code size()}. Furthermore, this structure places significantly reduced load on the garbage
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/TreeRangeMap.java

              public int size() {
                return Iterators.size(iterator());
              }
    
              @Override
              public boolean isEmpty() {
                return !iterator().hasNext();
              }
            };
          }
    
          Iterator<Entry<Range<K>, V>> entryIterator() {
            if (subRange.isEmpty()) {
              return Iterators.emptyIterator();
            }
            Cut<K> cutToStart =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            operations.none(LoadBuildBuildOperationType)
            operations.none(LoadProjectsBuildOperationType)
            operations.none(EvaluateSettingsBuildOperationType)
            operations.none(ConfigureBuildBuildOperationType)
            operations.none(ConfigureProjectBuildOperationType)
    
            operations.only(CalculateTreeTaskGraphBuildOperationType)
            operations.only(CalculateTaskGraphBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

      // the old input ops and quantize ops.
      for (int i = 0; i != num_args; ++i) {
        // Previous loop iteration may invalidate the insertion point so we have to
        // reset insertion point each iteration.
        builder.setInsertionPointToStart(&bb);
    
        // In each iteration, a new argument is appended to the end of the list
        // and the current argument is erased, so here we always process the first
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

    import org.gradle.internal.logging.events.operations.LogEventBuildOperationProgressDetails
    import org.gradle.internal.logging.events.operations.ProgressStartBuildOperationProgressDetails
    import org.gradle.internal.logging.events.operations.StyledTextBuildOperationProgressDetails
    import org.gradle.internal.operations.BuildOperationDescriptor
    import org.gradle.internal.operations.BuildOperationListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    // (3) For passthrough results, if result #r is the same as arg #a of the loop
    //     body, after one iteration, result #r = arg #a, so we need to also
    //     propagate arg #a to result #r. After another iteration, arg #a of the
    //     loop body will be result #a of the previous iteration. So then we need
    //     propagate from result #a to result #r. Generalizing, the resource ID
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

                collectOutputs(build)
                build.addProgressListener(events, OperationType.FILE_DOWNLOAD)
                    .run()
            }
    
            then:
            events.operations.size() == 3
            events.trees == events.operations
            events.operations.every { it.successful }
            events.operation("Download ${projectFModuleMissing.pom.uri}").assertIsDownload(projectFModuleMissing.pom)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top