Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 922 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. pkg/apis/certificates/v1beta1/defaults_test.go

    			base.emailAddresses = opt.emailAddresses
    		}
    		if opt.uris != nil {
    			base.uris = opt.uris
    		}
    	}
    	return base
    }
    
    func csrWithOpts(base pemOptions, overlays ...pemOptions) []byte {
    	opts := overlayPEMOptions(append([]pemOptions{base}, overlays...)...)
    	uris := make([]*url.URL, len(opts.uris))
    	for i, s := range opts.uris {
    		u, err := url.ParseRequestURI(s)
    		if err != nil {
    			panic(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/controller/certificates/authority/authority.go

    		SerialNumber:       serialNumber,
    		Subject:            cr.Subject,
    		DNSNames:           cr.DNSNames,
    		IPAddresses:        cr.IPAddresses,
    		EmailAddresses:     cr.EmailAddresses,
    		URIs:               cr.URIs,
    		PublicKeyAlgorithm: cr.PublicKeyAlgorithm,
    		PublicKey:          cr.PublicKey,
    		Extensions:         cr.Extensions,
    		ExtraExtensions:    cr.ExtraExtensions,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 19:36:11 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top