Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 742 for uris (0.04 sec)

  1. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParser.java

                .collect(Collectors.toList());
            List<URI> uris = resolveURIs(baseURI, hrefs);
            return filterNonDirectChilds(baseURI, uris);
        }
    
        private URI addTrailingSlashes(URI uri) throws IOException, URISyntaxException {
            if(uri.getPath() == null){
                uri = new URI(uri.getScheme(), uri.getUserInfo(), uri.getHost(), uri.getPort(), "/", uri.getQuery(), uri.getFragment());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

        private URI baseUrl = URI.create("http://testrepo/")
        private ApacheDirectoryListingParser parser = new ApacheDirectoryListingParser();
    
        def "parse returns empty List if no link can be found"() {
            expect:
            List urls = parser.parse(baseUrl, new ByteArrayInputStream("<html>no link here</html>".bytes), CONTENT_TYPE)
            assertNotNull(urls)
            urls.isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/DefaultKeyServers.java

            try {
                return new URI(uri);
            } catch (URISyntaxException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        public static List<URI> getOrDefaults(List<URI> uris) {
            if (uris.isEmpty()) {
                return DEFAULT_KEYSERVERS;
            }
            return uris;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/AbstractComponentSelectionRulesIntegrationTest.groovy

            Set uris = []
            def repo = GradleMetadataResolveRunner.useIvy() ? ivyHttpRepo : mavenHttpRepo
            def desc = GradleMetadataResolveRunner.useIvy() ? 'ivy' : 'pom'
            def resolve = repo.module(group, module, version)
            uris << resolve."$desc".uri
            if (expectGradleMetadataRequest) {
                uris << resolve.moduleMetadata.uri
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/testFixtures/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadUtil.groovy

                }
            """
        }
    
        static String singleUrlResolverCode(URI uri) {
            """
                @Override
                public Optional<JavaToolchainDownload> resolve(JavaToolchainRequest request) {
                    URI uri = URI.create("${uri.toString()}");
                    return Optional.of(JavaToolchainDownload.fromUri(uri));
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 11:08:46 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            }
            return classLoader;
        }
    
        private static Set<URI> uris(VisitableURLClassLoader classLoader) throws URISyntaxException {
            URL[] urls = classLoader.getURLs();
            Set<URI> uris = new HashSet<>(urls.length);
            for (URL url : urls) {
                uris.add(url.toURI());
            }
            return uris;
        }
    
        private ClassLoaderDetails getDetails(ClassLoader classLoader) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/ClassPath.java

         */
        boolean isEmpty();
    
        /**
         * Returns the list of URIs of the classpath entries (JARs or class directories) that this classpath consists of. The order is the classpath search order.
         *
         * @return the list of URIs of the classpath entries
         */
        List<URI> getAsURIs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/connector/ResourceConnectorSpecification.java

            return null;
        }
    
        default Collection<Authentication> getAuthentications() {
            return Collections.emptyList();
        }
    
        default HttpRedirectVerifier getRedirectVerifier() {
            return uris -> {
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileResolutionIntegrationTest.groovy

            buildFile """
    def f = file("file:testdir")
    assert f == project.layout.projectDirectory.dir("testdir").asFile
    """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 19:24:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. ci/official/envs/versions_upload

    # ==============================================================================
    # Release jobs are very basic. They don't use any caching or RBE,
    # but they do upload logs to resultstore.
    # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to
    # pretend the path is a directory.
    TFCI_ARTIFACT_FINAL_GCS_ENABLE=1
    TFCI_ARTIFACT_FINAL_GCS_SA_PATH="${KOKORO_KEYSTORE_DIR}/73361_tensorflow_release_binary_uploader_service_account"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 19:07:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top