Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 177 for modulemap (0.52 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

            where:
            projectionType              | fullQualified
            "ModelMap<ComponentSpec>"   | "org.gradle.model.ModelMap<org.gradle.platform.base.ComponentSpec>"
            "ModelMap<CustomComponent>" | "org.gradle.model.ModelMap<CustomComponent>"
            "ComponentSpecContainer"    | "org.gradle.platform.base.ComponentSpecContainer"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      }];
    }
    
    def RestoreFunctionNamePass : Pass<"stablehlo-restore-function-name", "ModuleOp"> {
      let summary = "Restores function name from XlaCallModule op.";
    }
    
    def QuantizeCompositeFunctionsPass : Pass<"stablehlo-quantize-composite-functions", "ModuleOp"> {
      let summary = "Quantize composite functions with QDQ input / outputs.";
      let options = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

                    void configurePlatform(Platform platform) {
                        platform.operatingSystem.name = "${platform.operatingSystem.name} 10"
                    }
    
                    @Mutate
                    void addTask(ModelMap<Task> tasks, @Path("platform.operatingSystem") OperatingSystem os) {
                        tasks.create("fromPlugin") {
                            doLast {
                                println "plugin input: $os"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

    namespace tensorflow {
    namespace {
    
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> GetMlirModuleFromString(
        llvm::StringRef string, mlir::MLIRContext* context) {
      mlir::DialectRegistry mlir_registry;
      RegisterAllTensorFlowDialects(mlir_registry);
      context->appendDialectRegistry(mlir_registry);
      mlir::OwningOpRef<mlir::ModuleOp> mlir_module;
      auto status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

            def moduleA = sysPropRepo.module('group', 'projectA', '1.2').publish()
    
            when:
            run 'retrieve'
    
            then:
            hasArtifact(moduleA)
        }
    
        def "can resolve artifacts from local m2 with custom local repository defined by system-property"() {
            given:
            def artifactRepo = mavenLocal("artifactrepo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedScalarCollectionsIntegrationTest.groovy

                void createContainer(Container c) {}
    
                @Mutate
                void addItems(Container c) {
                    c.items.add 'foo'
                }
    
                @Mutate
                void addCheckTask(ModelMap<Task> tasks, Container c) {
                    tasks.create('check') {
                        assert c.items == ['foo'] as $type
                    }
                }
            }
    
            apply plugin: Rules
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenRemoteResolveIntegrationTest.groovy

            def repo = ivyHttpRepo("repo1")
            def moduleA = repo.module("group", "projectA", "1.2").publish()
            def moduleB = repo.module("group", "projectB", "1.0-milestone-9").publish()
            def moduleC = repo.module("group", "projectC", "0.99")
                .dependsOn(moduleA)
                .publish()
            def moduleD = repo.module("group", "projectD", "1.0GA")
                .dependsOn(moduleA)
                .dependsOn(moduleB)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

            ivyRepo.module('c').dependsOn('d').publish()
            IvyModule moduleA = ivyRepo.module('a').dependsOn('b').dependsOn('c')
            addExcludeRuleToModuleDependency(moduleA, 'b', excludeAttributes)
            addExcludeRuleToModuleDependency(moduleA, 'c', excludeAttributes)
            moduleA.publish()
    
            when:
            succeedsDependencyResolution()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorModuleExcludeResolveIntegrationTest.groovy

            given:
            ivyRepo.module('b').publish()
            ivyRepo.module('c').publish()
            IvyModule moduleA = ivyRepo.module('a').dependsOn('b').dependsOn('c')
            addExcludeRuleToModule(moduleA, excludeAttributes)
            moduleA.publish()
    
            when:
            succeedsDependencyResolution()
    
            then:
            assertResolvedFiles(resolvedJars)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

        return tmp_dir;
      }
    
      // Parses `module_op_str` to create a `ModuleOp`. Checks whether the created
      // module op is valid.
      mlir::OwningOpRef<mlir::ModuleOp> ParseModuleOpString(
          const absl::string_view module_op_str) {
        auto module_op_ref =
            mlir::parseSourceString<mlir::ModuleOp>(module_op_str, &ctx_);
        EXPECT_TRUE(module_op_ref);
        return module_op_ref;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top