Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,645 for aModule (0.28 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

            }
        }
    
        def "no dependencies test"() {
            applyPluginToProjects()
            project.apply(plugin: 'java')
    
            def module = project.ideaModule.module // Mock(IdeaModule)
            module.offline = true
    
            when:
            def result = dependenciesProvider.provide(module)
    
            then:
            result.isEmpty()
        }
    
        def "dependencies are added to each required scope"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            given:
            def module = ivyRepo.module("org", "child")
            module.configuration('first', extendsFrom: ['second'])
            module.configuration('second')
            module.publish()
    
            module = ivyRepo.module("org", "parent").dependsOn('child')
            module.configuration('first', extendsFrom: ['second'])
            module.configuration('second')
            module.publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3RepoResolveIntegrationTest.groovy

    task retrieve(type: Sync) {
        from configurations.compile
        into 'libs'
    }
    """
            and:
            module.pom.expectMetadataRetrieve()
            module.pom.sha1.expectDownload()
            module.pom.expectDownload()
            module.artifact.expectMetadataRetrieve()
            module.artifact.sha1.expectDownload()
            module.artifact.expectDownload()
    
            when:
            using m2
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_main.txt

    # attempt to upgrade the main module.
    go get rsc.io/quote/...@v1.5.1
    grep 'rsc.io/quote v1.5.1' go.mod
    
    
    # The main module cannot be updated to a specific version.
    ! go get rsc.io@v0.1.0
    stderr '^go: can''t request version "v0.1.0" of the main module \(rsc.io\)$'
    
    # A package in the main module can't be upgraded either.
    ! go get rsc.io/x@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaModule.java

    public abstract class GenerateIdeaModule extends XmlGeneratorTask<Module> {
    
        private IdeaModule module;
    
        public GenerateIdeaModule() {}
    
        @Inject
        public GenerateIdeaModule(IdeaModule module) {
            this.module = module;
        }
    
        @Override
        protected Module create() {
            return new Module(getXmlTransformer(), module.getPathFactory());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_ambiguous_arg.txt

    -- mv2/go.mod --
    module m/v2
    
    go 1.16
    -- mv2/README.txt --
    This module is m/v2. It doesn't actually need to exist,
    but it explains how module m could plausibly exist
    and still contain package p at 'latest' even when module
    m/p also exists.
    
    -- mp01/go.mod --
    module m/p
    
    go 1.16
    -- mp01/README.txt --
    This module is m/p.
    Package m/p does not exist in this module.
    -- mp02/go.mod --
    module m/p
    
    go 1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

                "(package $packageName is declared in the unnamed module, but module $producer does not read it)"
            } else {
                "(package $packageName is declared in the unnamed module, but module $consumer does not read it)"
            }
        }
    
        def "a required module cannot be found if module path inference is turned off"() {
            given:
            publishJavaModule('moda')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

        def expectGetDynamicRevision(IvyHttpModule module) {
            expectListVersions(module)
            module.ivy.expectGet()
            module.jar.expectGet()
        }
    
        def expectGetDynamicRevisionMetadata(IvyHttpModule module) {
            expectListVersions(module)
            module.ivy.expectGet()
        }
    
        private expectListVersions(IvyHttpModule module) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/mvs.go

    	})
    	return min, nil
    }
    
    // UpgradeAll returns a build list for the target module
    // in which every module is upgraded to its latest version.
    func UpgradeAll(target module.Version, reqs UpgradeReqs) ([]module.Version, error) {
    	return buildList([]module.Version{target}, reqs, func(m module.Version) (module.Version, error) {
    		if m.Path == target.Path {
    			return target, nil
    		}
    
    		return reqs.Upgrade(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

        void "module forced by rule has correct selection reason"()
        {
            mavenRepo.module("org.utils", "impl", '1.3').dependsOn('org.utils', 'api', '1.3').publish()
            mavenRepo.module("org.utils", "impl", '1.5').dependsOn('org.utils', 'api', '1.5').publish()
    
            mavenRepo.module("org.utils", "api", '1.3').publish()
            mavenRepo.module("org.utils", "api", '1.5').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
Back to top