Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 129 for getURI (0.27 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

        VersionMappingStrategyInternal getVersionMappingStrategy();
    
        boolean isPublishBuildId();
    
    
        interface PublishedFile {
            String getName();
    
            String getUri();
        }
    
        interface DerivedArtifact {
            boolean shouldBePublished();
            File create();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

                try {
                    if (download.isPresent()) {
                        Collection<Authentication> authentications = repository.getAuthentications(download.get().getUri());
                        successfulProvisioning = provisionInstallation(spec, download.get().getUri(), authentications);
                        break;
                    }
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/DefaultLocallyAvailableExternalResource.java

            this.source = source;
            this.metaData = metaData;
        }
    
        @Override
        public String getDisplayName() {
            return source.toString();
        }
    
        @Override
        public URI getURI() {
            return source;
        }
    
        @Nullable
        @Override
        public ExternalResourceMetaData getMetaData() {
            return metaData;
        }
    
        @Override
        public File getFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3IntegrationTest.groovy

        @Rule
        public S3Server server = new S3Server(temporaryFolder)
    
        def setup() {
            settingsFile << 'rootProject.name = "publishS3Test"'
    
            executer.withArgument("-Dorg.gradle.s3.endpoint=${server.getUri()}")
            executer.withStackTraceChecksDisabled()
        }
    
        def "can publish to a S3 Maven repository bucket=#bucket"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/DownloadedUriTextResourceTest.groovy

            def resourceLocation = underTest.getLocation()
    
            then:
            resourceLocation.getDisplayName() == "Test description '$sourceUri'"
            resourceLocation.getURI() == sourceUri
            resourceLocation.getFile() == null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ClosureBackedRuleFactory.java

            @Override
            public SourceLocation transform(TransformedClosure closure) {
                SourceLocation sourceLocation = closure.sourceLocation();
                URI uri = sourceLocation.getUri();
                String scheme = uri.getScheme();
                String description;
    
                if ("file".equalsIgnoreCase(scheme)) {
                    description = relativeFilePathResolver.resolveAsRelativePath(uri);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

        @Override
        public Statement apply(Statement base, Description description) {
            return backingRepo.apply(base, description);
        }
    
        @Override
        public URI getUrl() {
            return server.getUri().resolve("/" + backingRepo.getName());
        }
    
        @Override
        public TestFile getWorkTree() {
            return backingRepo.getWorkTree();
        }
    
        @Override
        public TestFile file(Object... path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResponseResource.java

            this.metaData = new DefaultExternalResourceMetaData(source, getLastModified(), getContentLength(), getContentType(), etag, getSha1(response, etag), getFilename(), response.wasMissing());
        }
    
        public URI getURI() {
            return source;
        }
    
        @Override
        public String toString() {
            return "Http " + method + " Resource: " + source;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResource.java

     */
    public interface ExternalResource extends Resource {
        /**
         * Get the URI of the resource.
         */
        URI getURI();
    
        /**
         * Copies the contents of this resource to the given file.
         *
         * @throws ResourceException on failure to copy the content.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            redirectServer.expectGetRedirected(module.rootMetaData.path, "${server.uri}${module.rootMetaData.path}")
            module.rootMetaData.expectGetMissing()
    
            expectModulePublishViaRedirect(module, server.getUri(), redirectServer)
    
            when:
            succeeds 'publish'
    
            then:
            def localPom = file("build/publications/maven/pom-default.xml").assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top