Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 153 for Downloading (0.23 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringRemoteBuildCacheServiceHandle.java

                        public BuildOperationDescriptor.Builder description() {
                            return BuildOperationDescriptor.displayName("Download from remote build cache")
                                .progressDisplayName("Downloading");
                        }
                    });
                } catch (UncheckedWrapper uncheckedWrapper) {
                    throw uncheckedWrapper.getIOException();
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. docs/features/caching.md

    ### Cache Hit
    
    In the ideal scenario the cache can fulfill the request without any conditional call to the network.
    This will skip the normal events such as DNS, connecting to the network, and downloading the response body.
    
    As recommended by the HTTP RFC the max age of a document is defaulted to 10% of the 
    document's age at the time it was served based on "Last-Modified". Default expiration dates aren't used for URIs 
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. tools/packaging/common/istio-start.sh

          # Update iptables, based on current config. This is for backward compatibility with the init image mode.
          # The sidecar image can replace the k8s init image, to avoid downloading 2 different images.
          "${ISTIO_BIN_BASE}/pilot-agent" istio-iptables "${@}"
          exit 0
        fi
    
        if [[ ${1-} != "run" ]] ; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java

        }
    
        @Override
        public void transferInitiated(TransferEvent event) {
            String message = event.getRequestType() == TransferEvent.RequestType.PUT ? "Uploading" : "Downloading";
    
            println(
                    "transferInitiated",
                    message + ": " + event.getResource().getRepositoryUrl()
                            + event.getResource().getResourceName());
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

                    }
    
                    out.write(buffer, 0, numRead);
                }
            } catch (SocketTimeoutException e) {
                throw new IOException("Downloading from " + safeUrl + " failed: timeout (" + networkTimeout + "ms)", e);
            } finally {
                logger.log("");
                if (in != null) {
                    in.close();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    	if which mc &>/dev/null; then
    		echo "mc is already installed"
    	else
    		echo "Installing mc:"
    		go install github.com/minio/mc@latest
    	fi
    
    	if [ ! -x ./minio.${OLD_VERSION} ]; then
    		echo "Downloading minio.${OLD_VERSION} binary"
    		curl -o minio.${OLD_VERSION} ${OLD_BINARY_LINK}
    		chmod +x minio.${OLD_VERSION}
    	fi
    
    	if [ -z "$_MINIO_LDAP_TEST_SERVER" ]; then
    		export _MINIO_LDAP_TEST_SERVER=localhost:1389
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallationDownloader.groovy

        }
    
        private static File downloadMavenBinArchive(String mavenVersion, URL binArchiveUrl) {
            try {
                log.info "Attempting to downloading Maven binary distribution from '$binArchiveUrl'"
                return downloadBinArchive(mavenVersion, binArchiveUrl)
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/BuildCommitDistribution.kt

    import javax.inject.Inject
    
    
    // 5.1-commit-1a2b3c4d5e
    private
    val commitVersionRegex = """(\d+(\.\d+)+)-commit-[a-f0-9]+""".toRegex()
    
    
    /*
    The error output looks like this:
    
        Downloading https://services.gradle.org/distributions-snapshots/gradle-7.5-20220202183149+0000-bin.zip
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 08:07:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. docs/works_with_okhttp.md

     * [PersistentCookieJar](https://github.com/franmontiel/PersistentCookieJar): A persistent `CookieJar`.
     * ⬜️ [Picasso](https://github.com/square/picasso): A powerful image downloading and caching library for Android.
     * ⬜️ [Retrofit](https://github.com/square/retrofit): Type-safe HTTP client for Android and Java by Square.
     * [ScribeJava](https://github.com/scribejava/scribejava): Simple OAuth library for Java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

    Verification of Gradle distribution failed!
    
    Your Gradle distribution may have been tampered with.
    Confirm that the 'distributionSha256Sum' property in your gradle-wrapper.properties file is correct and you are downloading the wrapper from a trusted source.
    
     Distribution Url: $gradleBin
    Download Location: $f.absolutePath
    Expected checksum: 'bad'
      Actual checksum: '$distributionHash'
    """.trim())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top