Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,605 for expectGet (0.3 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmVersionIntegrationTest.groovy

        }
    
        def "can select the most appropriate producer variant (#expected) based on target compatibility (#requested)"() {
            buildFile << """
                configurations.compileClasspath.attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, $requested)
            """
    
            when:
            module.pom.expectGet()
            module.moduleMetadata.expectGet()
            module.getArtifact(classifier: "jdk${selected}").expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:37:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingIntegrationTest.groovy

            // Build 1 should download module 1 and reuse cached module 2 state
            mod1.pom.expectGet()
            mod1.artifact.expectGet()
    
            // Build 2 should download module 2 and reuse cached module 1 state
            mod2.pom.expectGet()
            mod2.artifact.expectGet()
    
            // Start build 1 then wait until it has run task 'a'.
            executer.withTasks("a", "block1", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyCustomStatusLatestVersionIntegrationTest.groovy

            def project3 = ivyHttpRepo.module('org.test', 'projectA', '1.3').withStatus("snapshot").publish()
    
            and:
            directoryList.allowGet()
            project3.ivy.expectGet()
            project2.ivy.expectGet()
            project2.jar.expectGet()
    
            when:
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants("projectA-1.2.jar")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/StaticVersionsReadOnlyCacheDependencyResolutionTest.groovy

                    implementation 'org.other:other:1.0'
                }
            """
    
            when:
            withReadOnlyCache()
    
            other.pom.expectGet()
            other.moduleMetadata.expectGet()
            other.artifact.expectGet()
    
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', 'org.gradle:ro-test:20') {
                    module('org.readonly:core:1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                        }
                    }
                }
            """
    
            m1.ivy.expectGet()
            m2.ivy.expectGet()
            m1.getArtifact(name: 'some-jar', type: 'jar').expectGet()
    
            expect:
            succeeds "resolve"
            // Currently builds all file dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

            when:
            module.pom.expectGet()
            sourceArtifact.expectHead()
            sourceArtifact.expectGet()
    
            then:
            succeeds 'verify'
    
            and:
            def jarFile = findFile(cacheDir, "files-*/**/example-1.0-sources.jar")
    
            when:
            assert jarFile.delete()
            server.resetExpectations()
            sourceArtifact.expectGet()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            def module = repo.module("some", "module", "1.0").withSourceAndJavadoc().publish()
    
            when:
            useMavenRepo(repo)
    
            and:
            module.pom.expectGet()
            module.artifact.expectGet()
    
            then:
            succeeds "resolve"
        }
    
        @ToBeFixedForConfigurationCache
        def "sources and javadoc jars from maven repositories are resolved, attached and cached"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                type = 'jar'
            }
        }
    }
    """
            resolve.prepare()
    
            when:
            dep.ivy.expectGet()
            dep.getArtifact(name: 'test-extra').expectGet()
            module2.ivy.expectGet()
            module2.jar.expectGet()
    
            then:
            succeeds "checkDeps"
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3DirectoryResource.groovy

        }
    
        URI getUri() {
            return new URI("s3", bucket, path, null, null)
        }
    
        @Override
        void expectDownload() {
            expectGet()
        }
    
        @Override
        void expectDownloadBroken() {
            expectGetBroken()
        }
    
        @Override
        void expectDownloadMissing() {
            expectGetMissing()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsDirectoryResource.groovy

        }
    
        URI getUri() {
            return new URI("gcs", bucket, path, null, null)
        }
    
        @Override
        void expectDownload() {
            expectGet()
        }
    
        @Override
        void expectDownloadBroken() {
            expectGetBroken()
        }
    
        @Override
        void expectDownloadMissing() {
            expectGetMissing()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top