Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 153 for Downloading (3.38 sec)

  1. src/cmd/go/internal/modfetch/toolchain.go

    // It has path "go" or "toolchain". The "go" repo reports versions like "1.2".
    // The "toolchain" repo reports versions like "go1.2".
    //
    // Note that the repo ONLY reports versions. It does not actually support
    // downloading of the actual toolchains. Instead, that is done using
    // the regular repo code with "golang.org/toolchain".
    // The naming conflict is unfortunate: "golang.org/toolchain"
    // should perhaps have been "go.dev/dl", but it's too late.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    		} else {
    			defer os.RemoveAll(tmpDir)
    		}
    		cfg.BuildContext.GOPATH = tmpDir
    	}
    
    	cfg.GOPROXY = "direct"
    	cfg.GOSUMDB = "off"
    	modload.Init()
    
    	// Shard tests by downloading only every nth module when shard flags are set.
    	// This makes it easier to test small groups of modules quickly. We avoid
    	// testing similarly named modules together (the list is sorted by module
    	// path and version).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/override/ComponentOverrideMetadataResolveIntegrationTest.groovy

            """
    
            when:
            repositoryInteractions {
                'org:foo:1.0' {
                    // HEAD requests happen in parallel when Gradle downloads metadata.
                    // In this cases "downloading metadata" means testing for the artifact.
                    // Each declaration is treated separately with it's own "consumer provided" metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                                    && artifact.getDependencyTrail().size() == 1) {
                                logger.warn(
                                        "While downloading {}:{}:{}{}",
                                        pomArtifact.getGroupId(),
                                        pomArtifact.getArtifactId(),
                                        pomArtifact.getVersion(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/transport/RepositoryTransportFactory.java

            // File resources are handled slightly differently at present.
            // file:// repos are treated differently
            // 1) we don't cache their files
            // 2) we don't do progress logging for "downloading"
            if (schemes.equals(Collections.singleton("file"))) {
                return createFileTransport(name);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    This is a key feature to create builds that are reliable and reproducible in any environment.
    
    [[sub:cache_artifact_reuse]]
    === Artifact reuse
    
    Before downloading an artifact, Gradle tries to determine the checksum of the required artifact by downloading the sha file associated with that artifact.
    If the checksum can be retrieved, an artifact is not downloaded if an artifact already exists with the same id and checksum.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            configureB.parent == resolveCompileA
            resolveCompileA.children == [configureB]
        }
    
        @TargetGradleVersion(">=3.5 <4.0")
        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: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    The following sections explain those categories.
    
    === Startup
    
    This reflects Gradle’s initialization time, which consists mostly of:
    
    - JVM initialization and class loading
    - Downloading the Gradle distribution if you’re using the wrapper
    - Starting the daemon if a suitable one isn’t already running
    - Executing Gradle initialization scripts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. docs/site-replication/run-replication-with-checksum-header.sh

    echo "done"
    
    if [ ! -f ./mc ]; then
    	echo -n "Downloading MinIO client ..."
    	wget -O mc https://dl.min.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    	echo "done"
    fi
    
    export MC_HOST_minio1=https://minio:minio123@localhost:9001
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/gotoolchain_local.txt

    # go install m@v should use local toolchain if not upgrading
    ! go install rsc.io/fortune/nonexist@v1
    ! stderr go1.22.9
    ! stderr switching
    stderr '^go: downloading rsc.io/fortune v1.0.0$'
    stderr '^go: rsc.io/fortune/nonexist@v1: module rsc.io/fortune@v1 found \(v1.0.0\), but does not contain package rsc.io/fortune/nonexist'
    
    # go run m@v should use local toolchain if not upgrading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top