Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,347 for module2 (0.11 sec)

  1. hack/module-graph.sh

    # TODO: Containerize the script to remove dependency issues with go mod and dot.
    
    # To generate graph with all Kubernetes modules run
    # ./hack/module-graph.sh
    # To generate graph with just staging modules run
    # ./hack/module-graph.sh staging
    
    error_exit()
    {
    	echo "$1" 1>&2
    	exit 1
    }
    
    staging_dependencies()
    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 07 08:19:59 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

        def "resolves available-at variant even if transitive dependencies are excluded"() {
            given:
            mavenHttpRepo.module('org', 'moduleB', '1.0')
                .dependsOn(mavenHttpRepo.module("org", "moduleA", "1.0"), exclusions: [[group: '*', module: '*']])
                .publish() // no Gradle Module metadata for this one because we don't support excludes on dependencies
            repository {
                'org:moduleA:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

        /**
         * Returns the modules required by this module.
         */
        Set<Module> getRequiredModules();
    
        /**
         * Returns the transitive closure of all modules required by this module, including the module itself.
         */
        Set<Module> getAllRequiredModules();
    
        /**
         * Returns the implementation + runtime classpath of the transitive closure of all modules required by this module, including the module itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

                return false;
            }
            Module module = (Module) o;
            return Objects.equal(dependencies, module.dependencies)
                && Objects.equal(excludeFolders, module.excludeFolders)
                && Objects.equal(outputDir, module.outputDir)
                && Objects.equal(sourceFolders, module.sourceFolders)
                && Objects.equal(generatedSourceFolders, module.generatedSourceFolders)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

            """
    
            when:
            parent.pom.expectGet()
            moduleA.pom.expectGet()
            moduleA.artifact.expectGet()
            moduleB.pom.expectGet()
            moduleB.artifact.expectGet()
    
            then:
            // have to run twice to trigger the failure, to parse the descriptor from the cache
            succeeds ":libs"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  6. okhttp-logging-interceptor/Module.md

    # Module okhttp-logging-interceptor
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:27:49 UTC 2019
    - 102 bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/validation/duplicate-module.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <modules>
        <module>child</module>
        <module>child</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Oct 24 14:53:54 UTC 2009
    - 1015 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesPreferProjectModulesIntegrationTest.groovy

        def resolve = new ResolveTestFixture(buildFile, "conf")
    
        def setup() {
            mavenRepo.module("myorg", "ModuleC", "2.0").publish()
            mavenRepo.module("myorg", "ModuleD", "2.0").publish()
            mavenRepo.module("myorg", "ModuleB", '1.0').dependsOn("myorg", "ModuleC", "2.0").publish()
            settingsFile << """
                rootProject.name = 'test'
            """
            resolve.prepare()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-parent.xml

      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model inheritance test parent: module path != artifactId</name>
    
      <modules>
        <module>child</module>
      </modules>
    
      <!-- 5 URLs in the pom will be inherited with path added -->
      <url>http://www.apache.org/</url>
      <scm>
        <connection>scm:my-scm:http://domain.org/base</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/module.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/cc/experimental/libtf/module.h"
    
    #include <string>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    namespace tf {
    namespace libtf {
    namespace impl {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
Back to top