Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for copyFrom (0.45 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/AbstractLongRunningOperation.java

            operationParamsBuilder.setInjectedPluginClasspath(classpath);
            return getThis();
        }
    
        public void copyFrom(ConsumerOperationParameters operationParameters) {
            operationParamsBuilder.copyFrom(operationParameters);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/IncrementalScalaCompileIntegrationTest.groovy

        }
    
        def recompilesDependentClasses() {
            given:
            run("classes")
    
            when: // Update interface, compile should fail
            file('src/main/scala/IPerson.scala').assertIsFile().copyFrom(file('NewIPerson.scala'))
    
            then:
            runAndFail("classes").assertHasDescription("Execution failed for task ':compileScala'.")
        }
    
        @Issue("gradle/gradle#13392")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. 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)
  6. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/junitplatform/JUnitPlatformOptionsTest.groovy

                .includeEngines("targetIncludedCategory")
                .excludeEngines("targetExcludedCategory")
                .includeTags("targetIncludedTag")
                .excludeTags("targetExcludedTag")
            target.copyFrom(source)
    
            then:
            with(target) {
                includeEngines =~ ["sourceIncludedCategory"]
                excludeEngines =~ ["sourceExcludedCategory"]
                includeTags =~ ["sourceIncludedTag"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/junit/JUnitOptions.java

        private Set<String> excludeCategories = new LinkedHashSet<String>();
    
        /**
         * Copies the options from the source options into the current one.
         * @since 8.0
         */
        public void copyFrom(JUnitOptions other) {
            replace(this.includeCategories, other.includeCategories);
            replace(this.excludeCategories, other.excludeCategories);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top