Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 153 for Downloading (0.13 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/SecureFileDownloader.java

            final File downloadFile = new File(targetFile.getAbsoluteFile() + ".part");
            try {
                resource.withContent(inputStream -> {
                    LOGGER.info("Downloading {} to {}", resource.getDisplayName(), targetFile);
                    copyIntoFile(source, inputStream, downloadFile);
                });
                try {
                    moveFile(targetFile, downloadFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. api/maven-api-settings/src/main/mdo/settings.mdo

              <description>
                How to handle downloading of releases from this repository
              </description>
              <association>
                <type>RepositoryPolicy</type>
              </association>
            </field>
            <field>
              <name>snapshots</name>
              <version>1.0.0+</version>
              <description>
                How to handle downloading of snapshots from this repository
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download_exec_toolchain.txt

    #
    # There is no go.mod file into which we can record the selected toolchain,
    # so unfortunately these version switches won't be as reproducible as other
    # go commands, but that's still preferable to failing entirely or downloading
    # a module zip that we don't understand.
    
    # GOTOOLCHAIN=auto should run the newer toolchain
    env GOTOOLCHAIN=auto
    go mod download rsc.io/needgo121@latest rsc.io/needgo122@latest rsc.io/needgo123@latest rsc.io/needall@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                       STACKTRACE_MESSAGE,
                       INFO_DEBUG,
                       SCAN,
                       GET_HELP)
        }
    
        def 'toolchain selection that requires downloading fails when it is disabled'() {
            settingsFile << """${applyToolchainResolverPlugin("CustomToolchainResolver", noUrlResolverCode())}"""
    
            buildFile << """
                apply plugin: "java"
    
                java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

                    .withTasks("compileJava")
                    .run()
    
            then:
            javaClassFile("Foo.class").assertExists()
            assertJdkWasDownloaded()
        }
    
        def "clean destination folder when downloading toolchain"() {
            when: "build runs and doesn't have a local JDK to use for compilation"
            result = executer
                    .withTasks("compileJava", "-Porg.gradle.java.installations.auto-detect=false")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    However, where possible Gradle will check if the previously downloaded artifacts are valid before downloading again.
    This is done by comparing published SHA1 values in the repository with the SHA1 values for existing downloaded artifacts.
    
    - new versions of dynamic dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. .github/DISCUSSION_TEMPLATE/questions.yml

              * I already hit the "watch" button in this repository to receive notifications and I commit to help at least 2 people that ask questions in the future.
              * Review one Pull Request by downloading the code and following [all the review process](https://fastapi.tiangolo.com/help-fastapi/#review-pull-requests).
    
          options:
            - label: I commit to help with one of those options 👆
              required: true
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    					goos, goarch, _ := strings.Cut(vers[i+1:], "-")
    					vers = vers[:i] + " (" + goos + "/" + goarch + ")"
    				}
    				fmt.Fprintf(os.Stderr, "go: downloading %s\n", vers)
    			} else {
    				fmt.Fprintf(os.Stderr, "go: downloading %s %s\n", mod.Path, vers)
    			}
    		}
    		unlock, err := lockVersion(ctx, mod)
    		if err != nil {
    			return "", err
    		}
    		defer unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. pkg/wasm/cache.go

    }
    
    // Get returns path the local Wasm module file.
    func (c *LocalFileCache) Get(downloadURL string, opts GetOptions) (string, error) {
    	// Construct Wasm cache key with downloading URL and provided checksum of the module.
    	key := cacheKey{
    		downloadURL: downloadURL,
    		moduleKey: moduleKey{
    			name:     moduleNameFromURL(downloadURL),
    			checksum: opts.Checksum,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

        public ArtifactResolutionRequest setCollectionFilter(ArtifactFilter filter) {
            this.collectionFilter = filter;
    
            return this;
        }
    
        /**
         * Gets the artifact filter that controls downloading of artifact files. This filter operates on those artifacts
         * that have been included by the {@link #getCollectionFilter()}.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top