Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for getURI (0.53 sec)

  1. testing/performance/src/templates/project-with-source/pom.xml

        <packaging>jar</packaging>
        <version>1.0-SNAPSHOT</version>
        <% if (repository ) { %>
        <repositories>
            <repository>
              <id>local-repo</id>
              <url>${repository.getUri()}</url>
            </repository>
          </repositories>
        <% } %>
        <dependencies>
            <dependency>
                <groupId>commons-lang</groupId>
                <artifactId>commons-lang</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 08:47:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForProjectConfigurationOperationsTest.groovy

            def scriptPluginApplicationResult = Stub(InternalPluginApplicationResult)
            _ * scriptPluginApplicationResult.getPlugin() >> Stub(InternalScriptPluginIdentifier) {
                getUri() >> new File(rootDir, "build.gradle").toURI()
            }
            _ * scriptPluginApplicationResult.getTotalConfigurationTime() >> Duration.ofMillis(42)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top