Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HttpDirectoryResource (0.39 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpDirectoryResource.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http
    
    import org.gradle.test.fixtures.file.TestFile
    
    class HttpDirectoryResource extends AbstractHttpResource {
        final String path
        private final TestFile directory
    
        HttpDirectoryResource(HttpServer server, String path, TestFile directory) {
            super(server)
            this.directory = directory
            this.path = path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpRepository.groovy

        }
    
        @Override
        HttpDirectoryResource directoryList(String organisation, String module) {
            return directory(organisation, module)
        }
    
        HttpDirectoryResource directory(String groupId, String artifactId) {
            def path = "${groupId.replace('.', '/')}/$artifactId/"
            return new HttpDirectoryResource(server, "$contextPath/$path", backingRepository.getRootDir().file(path))
        }
    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. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/HttpRepository.groovy

    import org.gradle.test.fixtures.server.http.HttpDirectoryResource
    
    interface HttpRepository extends Repository {
        enum MetadataType {
            DEFAULT,
            ONLY_ORIGINAL,
            ONLY_GRADLE
        }
    
        @Override
        HttpModule module(String group, String module)
    
        @Override
        HttpModule module(String group, String module, String version)
    
        HttpDirectoryResource 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)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpRepository.groovy

        }
    
        String getArtifactPattern() {
            return "$uri/${backingRepository.baseArtifactPattern}"
        }
    
        HttpDirectoryResource directoryList(String organisation, String module) {
            return new HttpDirectoryResource(server, "$contextPath/$organisation/$module/", backingRepository.moduleDir(organisation, module))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top