Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 144 for getURI (0.48 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top