Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,645 for aModule (0.21 sec)

  1. platforms/documentation/docs/src/snippets/ant/useExternalAntTask/common/checkstyle.xml

    <?xml version="1.0"?>
    <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
    <module name="Checker">
        <module name="TreeWalker">
            <module name="AvoidStarImport"/>
            <module name="ConstantName"/>
            <module name="EmptyBlock"/>
        </module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 346 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedDependencyResolutionIntegrationTest.groovy

            module.jar.sha1.expectGet()
        }
    
        void sha1ThenGetRequests() {
            module.ivy.sha1.expectGet()
            module.ivy.expectGet()
    
            module.jar.sha1.expectGet()
            module.jar.expectGet()
        }
    
        void headThenSha1Requests() {
            module.ivy.expectHead()
            module.ivy.sha1.expectGet()
    
            module.jar.expectHead()
            module.jar.sha1.expectGet()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/ivy/IvyPublishGcsIntegrationTest.groovy

    }
    """
    
            when:
            def module = ivyRepo.module('org.gradle.test', 'publishGcsTest', '1.0')
            module.jar.expectUpload()
            module.jar.sha1.expectUpload()
            module.jar.sha256.expectUpload()
            module.jar.sha512.expectUpload()
            module.ivy.expectUpload()
            module.ivy.sha1.expectUpload()
            module.ivy.sha256.expectUpload()
            module.ivy.sha512.expectUpload()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

            void expectGetMetadata(String group, String module) {
                String id = "$group:$module"
                server.expectGet("/repo/${group.replace('.', '/')}/$module/metadata.json", files[id])
            }
    
            @Override
            void expectRefresh(String group, String module) {
                String id = "$group:$module"
                server.expectHead("/repo/${group.replace('.', '/')}/$module/metadata.json", files[id])
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

                    .prepare()
    
            when:
            module.ivy.expectGet()
            module.getArtifact(classifier: "my-sources").expectGet()
            module.getArtifact(classifier: "my-javadoc").expectGet()
    
            then:
            checkArtifactsResolvedAndCached()
        }
    
        def "resolves multiple artifacts of the same type"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSnapshotIntegTest.groovy

            }
        }
    """
            def module = mavenRepo.module('org.gradle', 'snapshotPublish', '1.0-SNAPSHOT')
    
            when:
            succeeds 'publish'
    
            then:
            def initialVersion = module.publishArtifactVersion
            def initialArtifacts = ["snapshotPublish-${initialVersion}.module", "snapshotPublish-${initialVersion}.jar", "snapshotPublish-${initialVersion}.pom"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultDependencySpecContainerTest.groovy

            t.message == "Cannot set 'module' multiple times for module dependency."
    
            when:
            container.module("bar").module("org:foo:1.0")
    
            then:
            t = thrown IllegalDependencyNotation
            t.message == "Cannot set 'module' multiple times for module dependency."
    
            when:
            container.module("org:foo:1.0").group("bar")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_invalid_path.txt

    # Test that go list fails on a go.mod with no module declaration.
    cd $WORK/gopath/src/mod
    ! go list .
    stderr '^go: error reading go.mod: missing module declaration. To specify the module path:\n\tgo mod edit -module=example.com/mod$'
    
    # Test that go mod init in GOPATH doesn't add a module declaration
    # with a path that can't possibly be a module path, because
    # it isn't even a valid import path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top