Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for module2 (0.14 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            def projectConfig = configureProject(username, password, "mavenRepo", false)
            def configurationCache = newConfigurationCacheFixture()
            def metadataFile = file('build/publications/maven/module.json')
    
            expect:
            !GUtil.isSecureUrl(server.uri)
    
            when:
            prepareMavenHttpRepository(projectConfig.remoteRepo, new DefaultPasswordCredentials(username, password))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. pom.xml

        <module>maven-settings-builder</module>
        <module>maven-artifact</module>
        <module>maven-resolver-provider</module>
        <module>maven-repository-metadata</module>
        <module>maven-slf4j-provider</module>
        <module>maven-slf4j-wrapper</module>
        <module>maven-embedder</module>
        <module>maven-compat</module>
        <module>apache-maven</module>
        <module>maven-toolchain-model</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            this.writeDependencyVerifications = checksums;
        }
    
        /**
         * Returns the list of modules that are to be allowed to update their version compared to the lockfile.
         *
         * @return a list of modules allowed to have a version update
         * @since 4.8
         */
        public List<String> getLockedDependenciesToUpdate() {
            return lockedDependenciesToUpdate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top