Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 729 for iterations (0.15 sec)

  1. 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)
  2. 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)
  3. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

    public final class ConcurrentHashMultiset<E> extends AbstractMultiset<E> implements Serializable {
    
      /*
       * The ConcurrentHashMultiset's atomic operations are implemented primarily in terms of
       * AtomicInteger's atomic operations, with some help from ConcurrentMap's atomic operations on
       * creation and removal (including automatic removal of zeroes). If the modification of an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/AbstractNetwork.java

              }
    
              // Mostly safe: We check contains(u) before calling successors(u), so we perform unsafe
              // operations only in weird cases like checking for an EndpointPair<ArrayList> in a
              // Network<LinkedList>.
              @SuppressWarnings("unchecked")
              @Override
              public boolean contains(@CheckForNull Object obj) {
                if (!(obj instanceof EndpointPair)) {
                  return false;
                }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/AbstractNetwork.java

              }
    
              // Mostly safe: We check contains(u) before calling successors(u), so we perform unsafe
              // operations only in weird cases like checking for an EndpointPair<ArrayList> in a
              // Network<LinkedList>.
              @SuppressWarnings("unchecked")
              @Override
              public boolean contains(@CheckForNull Object obj) {
                if (!(obj instanceof EndpointPair)) {
                  return false;
                }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. 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)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    template <typename> class ParamGenerator;
    
    // Interface for iterating over elements provided by an implementation
    // of ParamGeneratorInterface<T>.
    template <typename T>
    class ParamIteratorInterface {
     public:
      virtual ~ParamIteratorInterface() {}
      // A pointer to the base generator instance.
      // Used only for the purposes of iterator comparison
      // to make sure that two iterators belong to the same generator.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            assert !operations.empty
            assert operations[0].descriptor.parent == null
    
            operations.tail().each { assert it.descriptor.parent != null }
        }
    
        /**
         * Asserts that the events form a typical tree of operations for a build.
         */
        void assertIsABuild() {
            assertHasSingleTree()
    
            def root = operations[0]
            assert root.buildOperation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

    import org.gradle.caching.internal.operations.BuildCacheArchivePackBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheArchiveUnpackBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheLocalLoadBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheLocalStoreBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheRemoteDisabledDueToFailureProgressDetails
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.internal.taskgraph.CalculateTaskGraphBuildOperationType
    import org.gradle.internal.taskgraph.CalculateTreeTaskGraphBuildOperationType
    import org.gradle.launcher.exec.RunBuildBuildOperationType
    import org.gradle.operations.lifecycle.FinishRootBuildTreeBuildOperationType
    import org.gradle.operations.lifecycle.RunRequestedWorkBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top