Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for getSchemes (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultIvyArtifactRepository.java

        public ConfiguredModuleComponentRepository createResolver() {
            return createRealResolver();
        }
    
        @Override
        protected IvyRepositoryDescriptor createDescriptor() {
            Set<String> schemes = getSchemes();
            validate(schemes);
    
            URI url = urlArtifactRepository.getUrl();
            IvyRepositoryDescriptor.Builder builder = new IvyRepositoryDescriptor.Builder(getName(), url)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

        }
      }
    
      return all_schemes;
    }
    
    static std::vector<std::string> GetSchemes() {
      static std::vector<std::string>* schemes = GetSchemesFromUserOrEnv();
      return *schemes;
    }
    
    INSTANTIATE_TEST_SUITE_P(ModularFileSystem, ModularFileSystemTest,
                             ::testing::ValuesIn(GetSchemes()));
    
    // Loads a shared object implementing filesystem functionality.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParser.java

            final String baseURIScheme = baseURI.getScheme();
    
            List<String> uris = new ArrayList<String>();
            final String prefixPath = baseURI.getPath();
            for (URI parsedURI : inputURIs) {
                if (parsedURI.getHost() != null && !parsedURI.getHost().equals(baseURIHost)) {
                    continue;
                }
                if (parsedURI.getScheme() != null && !parsedURI.getScheme().equals(baseURIScheme)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClasspathUtil.java

                location = toURI(resource);
                String path = location.getPath();
                if (location.getScheme().equals("file")) {
                    assert path.endsWith("/" + name);
                    return new File(path.substring(0, path.length() - (name.length() + 1)));
                } else if (location.getScheme().equals("jar")) {
                    String schemeSpecificPart = location.getRawSchemeSpecificPart();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //
    //     <URL>.getScheme() <string>
    //     <URL>.getHost() <string>
    //     <URL>.getHostname() <string>
    //     <URL>.getPort() <string>
    //     <URL>.getEscapedPath() <string>
    //     <URL>.getQuery() <map <string>, <list <string>>
    //
    // Examples:
    //
    //	url('/path').getScheme() // returns ''
    //	url('https://example.com/').getScheme() // returns 'https'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/ResolvedPattern.java

            this.pattern = pos < 0 ? "" : rawPattern.substring(pos);
            scheme = baseUri.getScheme().toLowerCase();
            absolutePattern = constructAbsolutePattern(baseUri, pattern);
        }
    
        public ResolvedPattern(URI baseUri, String pattern) {
            this.baseUri = baseUri;
            this.pattern = pattern;
            scheme = baseUri.getScheme().toLowerCase();
            absolutePattern = constructAbsolutePattern(baseUri, pattern);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ConnectionProperties.java

            URI uri = null;
            if (StringUtils.isNotBlank(property)) {
                try {
                    uri = new URI(property);
                    if (StringUtils.isBlank(uri.getScheme()) || !SUPPORTED_SCHEMES.contains(uri.getScheme().toUpperCase())) {
                        throw new IllegalArgumentException("System property [" + S3_ENDPOINT_PROPERTY + "=" + property + "] must have a scheme of 'http' or 'https'");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsConnectionProperties.java

            URI uri = null;
            if (StringUtils.isNotBlank(property)) {
                try {
                    uri = new URI(property);
                    if (StringUtils.isBlank(uri.getScheme()) || !SUPPORTED_SCHEMES.contains(uri.getScheme().toUpperCase())) {
                        throw new IllegalArgumentException("System property [" + GCS_ENDPOINT_PROPERTY + "=" + property + "] must have a scheme of 'http' or 'https'");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/RealizedJavaToolchainRepository.java

            for (Authentication authentication : configuredAuthentication) {
                AuthenticationInternal authenticationInternal = (AuthenticationInternal) authentication;
                if (uri.getScheme().startsWith("http")) {
                    authenticationInternal.addHost(uri.getHost(), uri.getPort());
                }
            }
            return configuredAuthentication;
        }
    
        public String getRepositoryName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 10:09:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/AbstractRepositoryLayout.java

         * @param schemes The set of schemes to add to.
         */
        public void addSchemes(@Nullable URI baseUri, Set<String> schemes) {
            if (baseUri != null) {
                schemes.add(baseUri.getScheme());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top