Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for expectGetMissing (0.28 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/AliasedArtifactResolutionIntegrationTest.groovy

            projectBRepo2.pom.expectHead()
            projectBRepo2.pom.sha1.expectGetMissing()
            projectBRepo2.pom.expectGet()
            projectBRepo2.artifact.expectHead()
            projectBRepo2.artifact.sha1.expectGetMissing()
            projectBRepo2.artifact.expectGet()
    
            then:
            succeedsWith 'mavenRepository2'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleArtifactResolutionIntegrationTest.groovy

                   .createVerifyTaskModuleComponentIdentifier()
    
            // TODO - should do single request
            module.ivy.expectGetMissing()
            module.ivy.expectGetMissing()
            module.jar.expectHead()
    
            then:
            checkArtifactsResolvedAndCached()
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomPackagingResolveIntegrationTest.groovy

            when:
            buildWithDependencies("compile 'group:projectA:1.0'")
            projectARepo2.hasPackaging("pom").publish()
    
            and:
            // First attempts to resolve in repo1
            projectARepo1.pom.expectGetMissing()
    
            projectARepo2.pom.expectGet()
            projectARepo2.artifact.expectHead()
            projectARepo2.artifact.expectGet()
    
            and:
            run 'retrieve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBuildOperationIntegrationTest.groovy

    """
    
            when:
            def m1 = repo.module("org.test", "test", "1.2")
            m1.artifact.expectPublish()
            m1.pom.expectPublish()
            m1.moduleMetadata.expectPublish()
            m1.rootMetaData.expectGetMissing()
            m1.rootMetaData.expectPublish()
    
            succeeds("publish")
    
            then:
            def writes1 = buildOperations.all(ExternalResourceWriteBuildOperationType)
            writes1.size() == 20
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyChangingModuleRemoteResolveIntegrationTest.groovy

            module.publishWithChangedContent()
    
            server.resetExpectations()
            module.ivy.expectHead()
            module.ivy.sha1.expectGetMissing()
            module.ivy.expectGet()
            module.jar.expectHead()
            module.jar.sha1.expectGetMissing()
            module.jar.expectGet()
    
            run 'retrieve'
    
            then:
            downloadedJar.assertHasChangedSince(snapshot)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

        }
    
        def "reports read of missing uri resource"() {
            given:
            def uuid = UUID.randomUUID()
            server.expectGetMissing("/myConfig-${uuid}.txt")
            server.start()
            buildFile << """
                text.text = resources.text.fromUri("${server.uri}/myConfig-${uuid}.txt")
    """
    
            expect:
            fails("text")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaRetriesIntegTest.groovy

            module.artifact.sha1.expectPut()
            module.artifact.sha256.expectPut()
            module.artifact.sha512.expectPut()
            module.artifact.md5.expectPut()
            module.rootMetaData.expectGetMissing()
            module.rootMetaData.expectPublish()
            module.pom.expectPublish()
            module.moduleMetadata.expectPublish()
        }
    
        def verifyPublications() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpPluginRepository.groovy

            server.stop()
        }
    
        @Override
        void expectPluginMarkerMissing(String pluginId, String pluginVersion) {
            module(pluginId, pluginId + PLUGIN_MARKER_SUFFIX, pluginVersion).with {
                pom.expectGetMissing()
                artifact.expectHeadMissing()
            }
        }
    
        @Override
        void expectPluginMarkerBroken(String pluginId, String pluginVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyGradleMetadataRedirectionIntegrationTest.groovy

            buildFile << """
                dependencies {
                    api "org:main:1.0"
                }
            """
    
            when:
            mainModule.ivy.expectGet()
            mainModule.moduleMetadata.expectGetMissing()
            mainModule.artifact.expectGet()
    
            run ':checkDeps'
    
            then:
            // falls back to Ivy file, since we have one
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpsIntegTest.groovy

            failure.assertHasCause("Could not write to resource '${module.artifact.uri}")
        }
    
        def expectPublication() {
            module.artifact.expectPublish()
            module.rootMetaData.expectGetMissing()
            module.rootMetaData.expectPublish()
            module.pom.expectPublish()
            module.moduleMetadata.expectPublish()
        }
    
        def verifyPublications() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top