Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for URIs (0.04 sec)

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

                }
            }
            return uris;
        }
    
        private List<URI> resolveURIs(URI baseURI, List<String> hrefs) {
            List<URI> uris = new ArrayList<>();
            for (String href : hrefs) {
                try {
                    uris.add(baseURI.resolve(href));
                } catch (IllegalArgumentException ex) {
                    LOGGER.debug("Cannot resolve anchor: {}", href);
    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

            <a href="directory2">directory2</a>
            <a href="directory3">directory3</a>
            <a href="directory4"/>"""
            expect:
            def uris = parser.parse(baseUrl, new ByteArrayInputStream(html.bytes), CONTENT_TYPE)
            assertNotNull(uris)
            uris.collect { it.toString() } == ["directory1", "directory2", "directory3", "directory4"]
        }
    
        def "only text/html content type is supported"() {
    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

                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

                Optional<JavaToolchainDownload> resolve(JavaToolchainRequest request) {
                    String[] uris = new String[] {${Arrays.stream(uri).map(Object::toString).collect(Collectors.joining("\", \"", "\"", "\""))}};
                    return index >= uris.length ? Optional.empty() : Optional.of(JavaToolchainDownload.fromUri(URI.create(uris[index++])));
                }
            """
        }
    
        static String singleUrlResolverCode(URI 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

         *
         * @return {@code true} if this class path is empty
         */
        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. 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)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/AbstractLongRunningOperation.java

            return getThis();
        }
    
        /**
         * Specifies classpath URIs used for loading user-defined classes. This list is in addition to the default classpath.
         *
         * @param classpath Classpath URIs
         * @return this
         * @since 2.8
         */
        public T withInjectedClassPath(ClassPath classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top