Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for moduleB (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            originalResult.rootIdeaProject.modules.name == ['buildA']
    
            def moduleA = originalResult.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
                assert it instanceof IdeaModuleDependency
            }
            moduleA.dependencies.targetModuleName == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            originalResult.getIdeaProject('buildB').modules.name == ['buildB', 'buildB-b1', 'b2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            if (name.equals("MINIMUM_WORKER_RUNTIME")) {
                ClassPath classpath = ClassPath.EMPTY;
                for (String module : RUNTIME_MODULES) {
                    classpath = classpath.plus(moduleRegistry.getModule(module).getImplementationClasspath());
                }
                for (String externalModule : RUNTIME_EXTERNAL_MODULES) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    listed in the GOPATH environment variable.
    (See 'go help gopath-get' and 'go help gopath'.)
    
    When using modules, downloaded packages are stored in the module cache.
    See https://golang.org/ref/mod#module-cache.
    
    When using modules, an additional variant of the go-import meta tag is
    recognized and is preferred over those listing version control systems.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.rootMetaData.md5.expectPut()
            module.pom.expectPut()
            module.pom.sha1.expectPut()
            module.pom.sha256.expectPutBroken()
            module.pom.sha512.expectPutBroken()
            module.pom.md5.expectPut()
            module.moduleMetadata.expectPut()
            module.moduleMetadata.sha1.expectPut()
            module.moduleMetadata.sha256.expectPutBroken()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        private String deprecated;
    
        /**
         * Flags this Mojo to run it in a multi-module way, i.e. aggregate the build with the set of projects listed as
         * modules. By default, no need to aggregate the Maven project and its child modules
         */
        private boolean aggregator = false;
    
        // ----------------------------------------------------------------------
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. settings.gradle.kts

            uses.add(platform)
        }
    
        fun module(platformName: String, moduleConfiguration: ArchitectureModuleBuilder.() -> Unit) {
            val module = ArchitectureModuleBuilder(platformName)
            modules.add(module)
            module.moduleConfiguration()
        }
    
        override fun build(): Platform {
            return Platform(name, id, uses.map { it.id }, modules.map { it.build() })
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                owner.with {
                    mavenRepo.module("thing", "lib1", "2.1").publishWithChangedContent()
                }
            }
    
            @Override
            void publishWithDifferentDependencies(AbstractIntegrationSpec owner) {
                owner.with {
                    def dep = mavenRepo.module("thing", "lib2", "4.0").publish()
                    mavenRepo.module("thing", "lib1", "2.1").dependsOn(dep).publish()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      if (!is_module_updated) {
        VLOG(2) << "MLIR module is not updated. Using the original graph. "
                << "Do not convert mlir module back to graph";
        return absl::OkStatus();
      }
      GraphExportConfig export_config;
      absl::flat_hash_set<Node*> control_ret_nodes;
    
      timings.Reset({kTfMlirCategory, "convert_mlir_to_graph"});
      // Some or all passes are enabled. Convert MLIR module and return back
      // resulted graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      return absl::OkStatus();
    }
    
    bool failed(const absl::Status& status) { return !status.ok(); }
    
    // Transforms the given module to be suitable for export to TensorFlow GraphDef
    // and then exports all functions to the given library.
    Status PrepareAndExportToLibrary(mlir::ModuleOp module,
                                     FunctionLibraryDefinition* flib_def) {
      // Pass pipeline is defined here instead of leveraging the phase one export
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            modulesToPublish.each { String notation ->
                def modules = notation.split("->").reverse()
                def current
                modules.each { String module ->
                    def s = new TestDependency(module)
                    def m = mavenRepo.module(s.group, s.name, s.version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top