Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for getURI (0.12 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

         * contain text encoded with a different encoding or represent a directory.
         *
         * @return The URI for this resource. Returns null if this resource does not have a URI.
         */
        @Nullable
        URI getURI();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpRepository.groovy

            }
            this.contextPath = contextPath
            this.server = server
            this.metadataType = metadataType
            this.backingRepository = backingRepository
        }
    
        URI getUri() {
            return new URI("${server.uri}${contextPath}")
        }
    
        HttpResource getModuleMetaData(String groupId, String artifactId) {
            return module(groupId, artifactId).rootMetaData
        }
    
        @Override
    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/server/http/IvyHttpRepository.groovy

            this.server = server
            this.contextPath = contextPath
            this.backingRepository = backingRepository
            this.m2Compatible = m2Compatible
            this.metadataType = metadataType
        }
    
        URI getUri() {
            return new URI("${server.uri}${contextPath}")
        }
    
        String getIvyPattern() {
            return "$uri/${backingRepository.baseIvyPattern}"
        }
    
        String getArtifactPattern() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SftpResource.groovy

        }
    
        String getName() {
            return file.name
        }
    
        String getPathOnServer() {
            return "/${RelativePathUtil.relativePath(server.baseDir, file)}"
        }
    
        URI getUri() {
            return new URI("${server.uri}${pathOnServer}")
        }
    
        void expectLstat() {
            server.expectLstat(pathOnServer)
        }
    
        void expectLstatMissing() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/StringTextResource.java

            }
    
            @Nullable
            @Override
            public File getFile() {
                return null;
            }
    
            @Nullable
            @Override
            public URI getURI() {
                return null;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceUploaderTest.groovy

                assert descriptor.progressDisplayName == "thing.jar"
    
                assert descriptor.details instanceof ExternalResourceWriteBuildOperationType.Details
                assert descriptor.details.location == location.getUri().toASCIIString()
                action.run(context)
            }
            1 * context.setResult(_) >> { ExternalResourceWriteBuildOperationType.Result opResult ->
                assert opResult.bytesWritten == bytesWritten
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top