Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for copyFrom (0.14 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

      tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {}
    
      tuple& operator=(const tuple& t) { return CopyFrom(t); }
    
      template <GTEST_1_TYPENAMES_(U)>
      tuple& operator=(const GTEST_1_TUPLE_(U)& t) {
        return CopyFrom(t);
      }
    
      GTEST_DECLARE_TUPLE_AS_FRIEND_
    
      template <GTEST_1_TYPENAMES_(U)>
      tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {
        f0_ = t.f0_;
        return *this;
      }
    
      T0 f0_;
    };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Cursor.java

    public class Cursor {
        int col; // count from left of screen, 0 = left most
        int row; // count from bottom of screen, 0 = bottom most, 1 == 2nd from bottom
    
        @SuppressWarnings("ReferenceEquality")
        public void copyFrom(Cursor position) {
            if (position == this) {
                return;
            }
            this.col = position.col;
            this.row = position.row;
        }
    
        public void bottomLeft() {
            col = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

            calibration_parameters.set_num_bins(512);
            calibration_parameters.set_min_percentile(0.001);
            calibration_parameters.set_max_percentile(99.999);
            calib_opts_.mutable_calibration_parameters()->CopyFrom(
                calibration_parameters);
            break;
          }
          case TEST_CASE_HISTOGRAM_MSE_BRUTEFORCE: {
            calib_opts_.set_calibration_method(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.cc

      if (min_max_statistics_.global_min() == std::numeric_limits<float>::max())
        return std::nullopt;
    
      CalibrationStatistics statistics;
      statistics.mutable_min_max_statistics()->CopyFrom(min_max_statistics_);
    
      return statistics;
    }
    
    }  // namespace calibrator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ConfigurableFileTreeCodec.kt

            val dir = readFile()
            val patterns = read() as PatternSet
            val tree = fileCollectionFactory.fileTree()
            tree.setDir(dir)
            // TODO - read patterns directly into tree
            tree.patterns.copyFrom(patterns)
            return tree
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_average_min_max.cc

    CalibrationStatisticsCollectorAverageMinMax::GetStatistics() const {
      if (average_min_max_statistics_.num_samples() == 0) return std::nullopt;
    
      CalibrationStatistics statistics;
      statistics.mutable_average_min_max_statistics()->CopyFrom(
          average_min_max_statistics_);
    
      return statistics;
    }
    
    }  // namespace calibrator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

      tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
    
    ]]
    
      tuple& operator=(const tuple& t) { return CopyFrom(t); }
    
      template <GTEST_$(k)_TYPENAMES_(U)>
      tuple& operator=(const GTEST_$(k)_TUPLE_(U)& t) {
        return CopyFrom(t);
      }
    
    $if k == 2 [[
      template <typename U0, typename U1>
      tuple& operator=(const ::std::pair<U0, U1>& p) {
        f0_ = p.first;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DownloadableGradleDistribution.groovy

                    distributionZip.delete()
                    gradleHomeDir.deleteDir()
    
                    URL url = getDownloadURL();
                    System.out.println("downloading $url")
                    distributionZip.copyFrom(url)
    
                    System.out.println("unzipping ${distributionZip} to ${gradleHomeDir}")
                    distributionZip.usingNativeTools().unzipTo(versionDir)
    
                    markerFile.createFile()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

        def copyFromOverridesOldOptions() {
            given:
            def source = testNGOptionsWithPrefix("source", false, 0)
    
            when:
            def target = testNGOptionsWithPrefix("target", true, 5)
            target.copyFrom(source)
    
            then:
            with(target) {
                outputDirectory == source.outputDirectory
                includeGroups == source.includeGroups
                excludeGroups == source.excludeGroups
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractProjectRelocationIntegrationTest.groovy

            setupProjectIn(originalDir)
    
            def relocatedDir = file("relocated-dir")
            def relocatedJavaHome = file("relocated-java-home")
            relocatedJavaHome.copyFrom(originalJavaHome)
            relocatedDir.file("settings.gradle") << localCacheConfiguration()
            setupProjectIn(relocatedDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top