Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateModule (0.91 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileRepository.groovy

        }
    
        IvyFileModule module(String organisation, String module, String revision = '1.0') {
            return createModule(organisation, module, revision as String)
        }
    
        IvyFileModule module(String module) {
            return createModule("org.gradle.test", module, '1.0')
        }
    
        private IvyFileModule createModule(String organisation, String module, String revision) {
            def modulePath = getDirPath(organisation, module, revision)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types_test.cc

    using ::testing::Test;
    
    static constexpr char kMetricsName[] =
        "/tensorflow/core/tf2xla/tf_quant_op_count";
    
    class LegalizeTfTypesTest : public Test {
     protected:
      void CreateModule(const char* module_string) {
        DialectRegistry mlir_registry;
        RegisterCommonToolingDialects(mlir_registry);
        context_.appendDialectRegistry(mlir_registry);
        TF_ASSERT_OK(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 09:05:02 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass_test.cc

    static constexpr char kDynamismFunctionCounterStreamzName[] =
        "/tensorflow/core/tf2xla/api/v2/dynamism_function_counter";
    
    class InputLoweringMetricsPassTest : public testing::Test {
     protected:
      void CreateModule(const char* module_string) {
        TF_ASSERT_OK_AND_ASSIGN(module_,
                                GetMlirModuleFromString(module_string, &context_));
        pm_ = std::make_unique<mlir::PassManager>(&context_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 19:42:09 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyFactoryInternal.java

                this.displayName = displayName;
            }
        }
    
        Dependency createDependency(Object dependencyNotation);
        @Deprecated
        org.gradle.api.artifacts.ClientModule createModule(Object dependencyNotation, Closure configureClosure);
        ProjectDependency createProjectDependencyFromMap(ProjectFinder projectFinder, Map<? extends String, ? extends Object> map);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:26:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top