Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 389 for uris (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

                .assertHasCause("Could not parse Ivy file ${module.ivy.uri}")
                .assertHasCause("invalid version null")
        }
    
        def "reports local Ivy descriptor that cannot be parsed"() {
            given:
            buildFile << """
    repositories.clear()
    repositories {
        ivy {
            url "${ivyRepo.uri}"
        }
    }
    dependencies {
        compile 'group:projectA:1.2'
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/readOnlyManagedProperty/groovy/buildSrc/src/main/java/Download.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.TaskAction;
    
    import java.net.URI;
    
    // tag::download[]
    public abstract class Download extends DefaultTask {
        @Input
        public abstract Property<String> getLocation();
    
        @Internal
        public Provider<URI> getUri() {
            return getLocation().map(l -> URI.create("https://" + l));
        }
    
        @TaskAction
        void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 682 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/buildService/groovy/buildSrc/src/main/java/Download.java

        @TaskAction
        public void download() {
            // Use the server to download a file
            WebServer server = getServer().get();
            URI uri = server.getUri().resolve("somefile.zip");
            System.out.println(String.format("Downloading %s", uri));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 776 bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/UrlComponentEncodingTesterJvm.kt

        val uri = httpUrl.toUri()
        val toAndFromUri = uri.toHttpUrlOrNull()
        val uriStripped = uriStrippedCodePoints.indexOf(codePointString) != -1
        if (uriStripped) {
          if (uri.toString() != component.urlString("")) {
            fail("Encoding $component $codePoint using $encoding")
          }
          return
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/AbstractRepositoryLayout.java

    import javax.annotation.Nullable;
    import java.net.URI;
    import java.util.Set;
    
    /**
     * Represents the directory structure for a repository.
     */
    public abstract class AbstractRepositoryLayout implements RepositoryLayout {
        /**
         * Given the base URI, apply the patterns and other configuration for this layout to the supplied resolver.
         *
         * @param baseUri The base URI for the repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpRepository.groovy

        }
    
        URI getUri() {
            return new URI("${serverUri}${contextPath}")
        }
    
        URI getServerUri() {
            server.uri
        }
    
        String getIvyPattern() {
            return "$uri/${backingRepository.baseIvyPattern}"
        }
    
        String getArtifactPattern() {
            return "$uri/${backingRepository.baseArtifactPattern}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. hack/make-rules/verify.sh

      "verify-golangci-lint-pr-hints.sh" # Runs in a separate job for PRs.
      "verify-licenses.sh"           # runs in a separate job to monitor availability of the dependencies periodically
      "verify-openapi-docs-urls.sh"  # Spams docs URLs, don't run in CI.
      )
    
    # Exclude typecheck in certain cases, if they're running in a separate job.
    if [[ ${EXCLUDE_TYPECHECK:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/main/java/org/gradle/vcs/git/GitVersionControlSpec.java

         * Specifically, {@link java.net.URL} extends {@link URI} to add network
         * operations which are both unsuited for simple data specification and
         * allocate additional memory.</p>
         */
        URI getUrl();
    
        /**
         * Sets the URL of the repository.
         */
        void setUrl(URI url);
    
        /**
         * Sets the URL of the repository.
         */
        void setUrl(String url);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/DefaultExternalResourceMetaData.java

     */
    
    package org.gradle.internal.resource.metadata;
    
    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    import java.net.URI;
    import java.util.Date;
    
    public class DefaultExternalResourceMetaData implements ExternalResourceMetaData {
        private final URI location;
        private final Date lastModified;
        private final long contentLength;
        private final String etag;
        private final HashCode sha1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/TimeCheckingClassLoaderCache.java

                return cache.get(getTimestampedFiles(jFiles), () -> {
                    ArrayList<URL> urls = new ArrayList<>(jFiles.size());
                    for (File f : jFiles) {
                        urls.add(f.toURI().toURL());
                    }
                    return new URLClassLoader(urls.toArray(new URL[0]), commonParent);
                });
            } catch (Exception e) {
                throw new RuntimeException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top