Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for Downloading (0.29 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

    // Ignore test on non-Windows platforms on CI since Playwright has unfulfilled package
    // dependencies on Linux and times out downloading the driver on MacOS.
    //
    // Comment out the @Requires annotation below to run the test locally on non Windows platforms.
    @Requires(UnitTestPreconditions.Windows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/networking.adoc

    // limitations under the License.
    
    [[networking_gradle]]
    == Networking with Gradle
    
    [[sec:accessing_the_web_via_a_proxy]]
    == Accessing the web through a proxy
    
    Configuring a proxy (for downloading dependencies, for example) is done via standard JVM system properties.
    
    These properties can be set directly in the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CacheAwareExternalResourceAccessor.java

         * @return a locally available resource, if found
         * @throws IOException whenever an error occurs when downloading of fetching from the cache
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

     *     <li>Determine how to produce the artifacts of the variant, for example by running a chain of transformers.</li>
     *     <li>Produce the artifacts, for example by running the transforms or downloading files.</li>
     * </ul>
     *
     * <p>This interface says nothing about thread safety, however some subtypes may be required to be thread safe.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/transfer/Slf4jMavenTransferListener.java

            this.out = out;
        }
    
        @Override
        public void transferInitiated(TransferEvent event) {
            String action = event.getRequestType() == TransferEvent.RequestType.PUT ? "Uploading" : "Downloading";
            String direction = event.getRequestType() == TransferEvent.RequestType.PUT ? "to" : "from";
    
            TransferResource resource = event.getResource();
            StringBuilder message = new StringBuilder();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

            File tempDownloadFile = new File(localTargetFile.getParentFile(), localTargetFile.getName() + ".part");
            tempDownloadFile.delete();
    
            logger.log("Downloading " + safeUri(distributionUrl));
            download.download(distributionUrl, tempDownloadFile);
            if(localTargetFile.exists()) {
                localTargetFile.delete();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_vendor_replace.txt

    stdout 'v3.0.0'
    stdout '.*[/\\]not-rsc.io[/\\]quote[/\\]v3'
    
    # Since all dependencies are replaced, 'go mod vendor' should not
    # have to download anything from the network.
    go mod vendor
    ! stderr 'downloading'
    ! stderr 'finding'
    
    # After vendoring, we expect to see the replacement in the vendor directory,
    # without attempting to look up the non-replaced version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ArtifactDownloadProgressCrossVersionSpec.groovy

    class ArtifactDownloadProgressCrossVersionSpec extends AbstractHttpCrossVersionSpec {
    
        @TargetGradleVersion(">=5.7")
        @Flaky(because = "https://github.com/gradle/gradle-private/issues/3638")
        def "generates events for downloading artifacts"() {
            given:
            def modules = setupBuildWithArtifactDownloadDuringConfiguration()
    
            def projectB = modules.projectB
            def projectC = modules.projectC
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 08:38:35 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/copycerts/copycerts.go

    	fmt.Printf("[download-certs] Downloading the certificates in Secret %q in the %q Namespace\n", kubeadmconstants.KubeadmCertsSecret, metav1.NamespaceSystem)
    
    	decodedKey, err := hex.DecodeString(key)
    	if err != nil {
    		return errors.Wrap(err, "error decoding certificate key")
    	}
    
    	secret, err := getSecret(client)
    	if err != nil {
    		return errors.Wrap(err, "error downloading the secret")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. release/downloadIstioCtl.sh

      curl -fsL -o "${tmp}/${filename}" "$ARCH_URL"
      tar -xzf "${tmp}/${filename}" -C "${tmp}"
    }
    
    without_arch() {
      printf "\n Downloading %s from %s ... \n" "${NAME}" "${URL}"
      if ! curl -o /dev/null -sIf "$URL"; then
        printf "\n%s is not found, please specify a valid ISTIO_VERSION\n" "$URL"
        exit 1
      fi
      filename="istioctl-${ISTIO_VERSION}-${OSEXT}.tar.gz"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top