Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,645 for aModule (0.28 sec)

  1. platforms/documentation/docs/src/snippets/ide/eclipse/kotlin/build.gradle.kts

    // tag::module-when-merged[]
    import org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry
    // end::module-when-merged[]
    // tag::module-before-merged[]
    // tag::module-when-merged[]
    import org.gradle.plugins.ide.eclipse.model.Classpath
    // end::module-when-merged[]
    // end::module-before-merged[]
    // tag::project-before-merged[]
    import org.gradle.plugins.ide.eclipse.model.Project
    // end::project-before-merged[]
    // tag::wtp-with-xml[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3SnapshotRepoIntegrationTest.groovy

        String artifactVersion = "1.45-SNAPSHOT"
        MavenS3Module module
    
        def setup() {
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in S3"() {
            setup:
            module.publish()
    
            buildFile << mavenAwsRepoDsl()
            buildFile << """
    configurations { compile }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginPublishingIntegrationTest.groovy

    
            then:
            mavenRepo.module('com.example.foo.new', 'foo-new', '1.2.3').assertPublished()
    
            def module = mavenRepo.module('com.example.foo', 'com.example.foo' + PLUGIN_MARKER_SUFFIX, '1.0')
            module.assertPublished()
            module.getPomFile().text.contains('foo-new')
            module.getPomFile().text.contains('com.example.foo.new')
            module.getPomFile().text.contains('1.2.3')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 13:07:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

            def module = ideaProject.modules.find {it. name == 'root'}
    
            then:
            module.dependencies.size() == 11
            hasDependency(module, "a", "PROVIDED")
            hasDependency(module, "a", "RUNTIME")
            hasDependency(module, "a", "TEST")
            hasDependency(module, "f", "TEST")
            hasDependency(module, "b", "PROVIDED")
            hasDependency(module, "b", "RUNTIME")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

            0 * pluginModuleRegistry.getApiModules()
        }
    
        def module(String name, Module... requiredModules) {
            Module module = Mock()
            _ * module.classpath >> DefaultClassPath.of(new File("$name-runtime"))
            _ * module.implementationClasspath >> DefaultClassPath.of(new File("$name-runtime"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/mvs/graph.go

    // the graph and ending at a module version m for which f(m) returns true, or
    // nil if no such path exists.
    func (g *Graph) FindPath(f func(module.Version) bool) []module.Version {
    	// firstRequires[a] = b means that in a breadth-first traversal of the
    	// requirement graph, the module version a was first required by b.
    	firstRequires := make(map[module.Version]module.Version)
    
    	queue := g.roots
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/text8.txt

     differently than if it were the main module. The module must not require
     a higher version of itself.
    
     - Vendor directories are not used in any module. (Vendor directories are not
     included in the module zip files downloaded by 'go install'.)
    
    If the arguments don't have version suffixes, "go install" may run in
    module-aware mode or GOPATH mode, depending on the GO111MODULE environment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                    edge("org:foo:1.0","org:foo:1.1").byConflictResolution()
                    module("org:bar:1.0") {
                        module("org:foo:1.1")
                    }
                    // BUG: This module should not be included, but it is
                    module("org:baz:1.0") {
                        module("org:baz-transitive:1.0")
                    }
                }
            }
             */
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

        def "a bom dependencyManagement entry can declare excludes which are applied unconditionally to module"() {
            given:
            moduleA.dependsOn(mavenHttpRepo.module("group", "moduleC", "1.0").allowAll().publish()).publish()
            bomDependency('moduleA', [[group: 'group', module: 'moduleC']])
            bomDependency('moduleB', [[group: 'group', module: 'moduleC']]).publish()
    
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentModuleMetadataContainerTest.groovy

            ex.message == "Cannot declare module replacement o:c->o:a because it introduces a cycle: o:c->o:a->o:b->o:c"
        }
    
        def "provides module metadata information"() {
            def module = replacements.module("com.google.collections:google-collections")
    
            expect:
            module.id == newId("com.google.collections", "google-collections")
            module.replacedBy == null
    
            when: module.replacedBy("a:b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top