Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for directoryList (0.15 sec)

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

        String getBaseIvyPattern() {
            return backingRepository.baseIvyPattern
        }
    
        String getBaseArtifactPattern() {
            return backingRepository.baseArtifactPattern
        }
    
        S3DirectoryResource directoryList(String organisation, String module) {
            return new S3DirectoryResource(server, bucket, backingRepository.moduleDir(organisation, module))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpRepository.groovy

        }
    
        HttpResource getModuleMetaData(String groupId, String artifactId) {
            return module(groupId, artifactId).rootMetaData
        }
    
        @Override
        HttpDirectoryResource directoryList(String organisation, String module) {
            return directory(organisation, module)
        }
    
        HttpDirectoryResource directory(String groupId, String artifactId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsSnapshotRepoIntegrationTest.groovy

            }
        }
    
        dependencies {
            classpath 'org.gradle:test:$artifactVersion+'
        }
    }
    """
            and:
            module.rootMetaData.expectDownloadMissing()
            mavenGcsRepo.directoryList("org.gradle", "test").expectDownload()
            module.metaData.expectDownload()
            module.pom.expectDownload()
            module.artifact.expectDownload()
    
            when:
            using m2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top