Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for assertLocallyAvailableLogged (0.36 sec)

  1. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/AbstractS3DependencyResolutionTest.groovy

        }
    
        IvyS3Repository getIvyS3Repo() {
            new IvyS3Repository(server, file(getTestDirectory()), getRepositoryPath(), getBucket())
        }
    
        def assertLocallyAvailableLogged(S3Resource... resources) {
            resources.each {
                assert output.contains("Found locally available resource with matching checksum: [s3:/${it.relativeFilePath()}")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/AbstractGcsDependencyResolutionTest.groovy

        }
    
        IvyGcsRepository getIvyGcsRepo() {
            new IvyGcsRepository(server, file(getTestDirectory()), getRepositoryPath(), getBucket())
        }
    
        def assertLocallyAvailableLogged(GcsResource... resources) {
            resources.each {
                assert output.contains("Found locally available resource with matching checksum: [gcs:/${it.relativeFilePath()}")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3RepoResolveIntegrationTest.groovy

            localModule.pomFile.assertIsCopyOf(module.pomFile)
            file('libs/test-1.85.jar').assertIsCopyOf(module.artifactFile)
    
            and:
            assertLocallyAvailableLogged(module.pom, module.artifact)
        }
    
        def "should download artifacts when maven local artifacts are different to remote "() {
            setup:
            module.publish()
            m2.generateGlobalSettingsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsRepoResolveIntegrationTest.groovy

            localModule.pomFile.assertIsCopyOf(module.pomFile)
            file('libs/test-1.85.jar').assertIsCopyOf(module.artifactFile)
    
            and:
            assertLocallyAvailableLogged(module.pom, module.artifact)
        }
    
        def "should download artifacts when maven local artifacts are different to remote "() {
            setup:
            module.publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top