Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for directoryList (0.23 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleSpec.groovy

                    def directoryList = repository.directoryList(module.organisation, module.module)
                    switch (it) {
                        case InteractionExpectation.GET:
                            directoryList.expectGet()
                            break
                        case InteractionExpectation.HEAD:
                            directoryList.expectHead()
                            break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyCustomStatusLatestVersionIntegrationTest.groovy

            cacheChangingModulesFor 0, 'seconds'
        }
    }
    
    task retrieve(type: Sync) {
        from configurations.compile
        into 'libs'
    }
    """
    
    
            and:
            def directoryList = ivyHttpRepo.directoryList('org.test', 'projectA')
            ivyHttpRepo.module('org.test', 'projectA', '1.1').withStatus("snapshot").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

    """
    
            when: "no versions"
            def directoryList = ivyHttpRepo.directoryList("group", "projectA")
            directoryList.expectGetMissing()
    
            then:
            fails "checkDeps"
            failure.assertHasCause("""Could not find any matches for group:projectA:2.+ as no versions of group:projectA are available.
    Searched in the following locations:
      - ${directoryList.uri}
    Required by:
    """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/MetadataSourcesResolveIntegrationTest.groovy

                    '1.1'()
                    '1.2'()
                }
            }
            // We are resolving with `gradleMetadata()` metadata: always use a directory listing (and not maven-metadata.xml)
            repository.directoryList('org.test', 'projectA').expectGet()
            repositoryInteractions(HttpRepository.MetadataType.ONLY_GRADLE) {
                'org.test:projectA' {
    
                    '1.2' {
                        expectResolve()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

            def mavenVersionList = mavenHttpRepo.module('org', 'foo').rootMetaData
            def mavenVersionList2 = mavenHttpRepo.directoryList('org', 'foo')
            def ivyVersionList = ivyHttpRepo.directoryList('org', 'foo')
    
            given:
            repositories {
                maven("""mavenContent { releasesOnly() }""")
                ivy()
            }
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/RemoteIvyRepository.groovy

        @Override
        RemoteIvyModule module(String organisation, String module, String revision)
    
        String getBaseIvyPattern()
    
        String getBaseArtifactPattern()
    
        RemoteResource directoryList(String organisation, String module)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyComponentMetadataRulesChangingModulesIntegrationTest.groovy

            ivyHttpRepo
        }
    
        String getRepoDeclaration() {
    """
    repositories {
        ivy {
            url "$repo.uri"
        }
    }
    """
        }
    
        def setup() {
            repo.directoryList("org.test", "moduleA").allowGet()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/HttpRepository.groovy

            ONLY_GRADLE
        }
    
        @Override
        HttpModule module(String group, String module)
    
        @Override
        HttpModule module(String group, String module, String version)
    
        HttpDirectoryResource directoryList(String organisation, String module)
    
        MetadataType getProvidesMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/IvyGcsRepository.groovy

        String getBaseIvyPattern() {
            return backingRepository.baseIvyPattern
        }
    
        String getBaseArtifactPattern() {
            return backingRepository.baseArtifactPattern
        }
    
        GcsDirectoryResource directoryList(String organisation, String module) {
            return new GcsDirectoryResource(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)
  10. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/MavenGcsRepository.groovy

            new MavenGcsModule(server, backingRepository.module(organisation, module, version), repositoryPath, bucket)
        }
    
        GcsDirectoryResource directoryList(String organisation, String module) {
            return new GcsDirectoryResource(server, bucket, this.module(organisation, module).backingModule.moduleDir.parentFile)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top