Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 883 for module$ (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                    }
                }
            """
            def files = [:]
            moduleToVersions.each { module, versions ->
                def file = temporaryFolder.createFile("versions-${module}.txt")
                file << versions.join(',')
                files[module] = file
                server.allowGetOrHead("/repo/org/$module/versions.txt", file)
            }
            new ExternalResourceListerInteractions(files)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

            where:
            source                                  | dest
            'platform(module("org.test:platform"))' | 'platform(project(":"))'
            'module("org.test:platform")'           | 'platform(project(":"))'
            'platform(module("org.test:platform"))' | 'project(":")'
            'module("org.test:platform")'           | 'project(":")'
            'module("org.test:platform")'           | 'project(":")'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

        void enablesTogglingJavadocAndSourcesOff() {
            //given
            def repoDir = file("repo")
            def module = maven(repoDir).module("coolGroup", "niceArtifact")
            module.artifact(classifier: 'sources')
            module.artifact(classifier: 'javadoc')
            module.publish()
    
            //when
            runIdeaTask """
    apply plugin: 'java'
    apply plugin: 'idea'
    
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

            }
            module.metaData.expectGet()
            module.pom.expectHead()
            module.pom.sha1.expectGet()
            module.pom.expectGet()
            if (isGradleMetadataPublished()) {
                module.moduleMetadata.expectHead()
                module.moduleMetadata.sha1.expectGet()
                module.moduleMetadata.expectGet()
            }
            module.artifact.expectHead()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenJvmLibraryArtifactResolutionIntegrationTest.groovy

        def repo = mavenHttpRepo
        def fileRepo = mavenRepo
        def module = repo.module("some.group", "some-artifact", "1.0")
        def sourceArtifact = module.artifact(classifier: "sources")
        def javadocArtifact = module.artifact(classifier: "javadoc")
        JvmLibraryArtifactResolveTestFixture fixture
    
        def setup() {
            initBuild(repo)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

                content += "dependencies.modules.module('${d.group}:${d.name}') { replacedBy '${d.pointsTo.group}:${d.pointsTo.name}' }\n"
            }
            buildFile << """
                $content
            """
        }
    
        void declaredReplacementWithReason(String rep, String reason) {
            def d = new TestDependency(rep)
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/localize_var_handles.mlir

    // RUN: tf-opt %s -allow-unregistered-dialect --tf-localize-var-handles --split-input-file | FileCheck %s
    
    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<10xf32>, value = dense<[0.,1.,2.,3.,4.,5.,6.,7.,8.,9.]> : tensor<10xf32> } : () -> ()
      // CHECK-LABEL: @read_from_global
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 21:12:02 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

                    "dependencies": [
                        { "group": "g0", "module": "m0" },
                        { "group": "g1", "module": "m1", "version": { "requires": "v1" } },
                        { "version": { "prefers": "v2" }, "group": "g2", "module": "m2" },
                        {
                            "group": "g3",
                            "module": "m3",
                            "version": { "requires": "v3"},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

                root(":", ":test:") {
                    module("a:a:1.0") {
                        module("b:b:1.0")
                        module("c:c:1.0")
                    }
                }
            }
    
            where:
            condition             | excludeAttributes
            'non-matching module' | [module: 'other']
            'non-matching module' | [group: 'other']
            'sibling module'      | [module: 'c']
            'sibling group'       | [group: 'c']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top