Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for downloadProgressLogged (2.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

            def snapshot = file('libs/projectA-1.0.jar').snapshot()
    
            and:
            progressLogging.downloadProgressLogged(projectA.pom.uri)
            progressLogging.downloadProgressLogged(projectA.artifact.uri)
            progressLogging.downloadProgressLogged(projectB.pom.uri)
            progressLogging.downloadProgressLogged(projectB.artifact.uri)
    
            when:
            server.resetExpectations()
            and:
            run 'retrieve'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

            } else {
                progressContent = []
            }
        }
    
        @Deprecated
        boolean downloadProgressLogged(URI url) {
            downloadProgressLogged(url.toASCIIString())
        }
    
        @Deprecated
        boolean downloadProgressLogged(String url) {
            return progressLogged("Download $url")
        }
    
        @Deprecated
        boolean uploadProgressLogged(URI url) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

            and:
            dep.ivy.expectDownload()
            dep.jar.expectDownload()
    
            when:
            run 'checkDeps'
    
            then:
            progressLogger.downloadProgressLogged(dep.ivy.uri)
            progressLogger.downloadProgressLogged(dep.jar.uri)
            resolve.expectGraph {
                root(":", ":test:") {
                    module("group:projectA:1.2")
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

            """
            when:
            module.ivy.expectDownload()
            module.jar.expectDownload()
    
            then:
            succeeds 'listJars'
            progressLogger.downloadProgressLogged(module.ivy.uri)
            progressLogger.downloadProgressLogged(module.jar.uri)
    
            when:
            server.resetExpectations()
    
            then:
            succeeds 'listJars'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top