Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 153 for Downloading (3.8 sec)

  1. src/cmd/go/internal/modfetch/codehost/vcs.go

    	if err != nil {
    		return nil, err
    	}
    	defer unlock()
    
    	r.tagsOnce.Do(func() { r.loadTags(ctx) })
    	tags := &Tags{
    		// None of the other VCS provide a reasonable way to compute TagSum
    		// without downloading the whole repo, so we only include VCS and URL
    		// in the Origin.
    		Origin: &Origin{
    			VCS: r.cmd.vcs,
    			URL: r.remote,
    		},
    		List: []Tag{},
    	}
    	for tag := range r.tags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    `gradle.wrapperUser=(myuser)`:: Specify username to download Gradle distributions <<gradle_wrapper.adoc#sec:authenticated_download,from servers using HTTP Basic Authentication>>.
    `gradle.wrapperPassword=(mypassword)`:: Specify password for downloading a Gradle distribution using the Gradle wrapper.
    `gradle.user.home=(path to directory)`:: Specify the `GRADLE_USER_HOME` directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              <description>How to handle downloading of releases from this repository.</description>
              <association>
                <type>RepositoryPolicy</type>
              </association>
            </field>
            <field>
              <name>snapshots</name>
              <version>4.0.0+</version>
              <description>How to handle downloading of snapshots from this repository.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. cluster/gce/upgrade.sh

            ;;
          *)
            echo "Unsupported host arch. Must be x86_64, 386, arm, arm64, s390x or ppc64le." >&2
            exit 1
            ;;
        esac
    
      # Download the CoreDNS migration tool
      echo "== Downloading the CoreDNS migration tool =="
      wget -P "${download_dir}" "https://github.com/coredns/corefile-migration/releases/download/v1.0.17/corefile-tool-${host_arch}" >/dev/null 2>&1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. cluster/gce/windows/common.psm1

          # OAuth2 bearer token.
          if (-not $httpResponseMessage.Result.IsSuccessStatusCode) {
            $statusCode = $httpResponseMessage.Result.StatusCode
            throw "Downloading ${Url} returned status code ${statusCode}, retrying."
          }
          try {
            $outFileStream = [System.IO.FileStream]::new($OutFile, [System.IO.FileMode]::Create, [System.IO.FileAccess]::Write)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    Gradle installs the downloaded JDKs in the <<directory_layout.adoc#dir:gradle_user_home,Gradle User Home>>.
    
    NOTE: Gradle only downloads JDK versions for GA releases.
    There is no support for downloading early access versions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/cache.go

    func (e *DownloadDirPartialError) Is(err error) bool { return err == fs.ErrNotExist }
    
    // lockVersion locks a file within the module cache that guards the downloading
    // and extraction of the zipfile for the given module version.
    func lockVersion(ctx context.Context, mod module.Version) (unlock func(), err error) {
    	path, err := CachePath(ctx, mod, "lock")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. hack/lib/golang.sh

        export CGO_ENABLED=1
        export CC="${!ccenv}"
      fi
    }
    
    # Ensure the go tool exists and is a viable version.
    # Inputs:
    #   env-var GO_VERSION is the desired go version to use, downloading it if needed (defaults to content of .go-version)
    #   env-var FORCE_HOST_GO set to a non-empty value uses the go version in the $PATH and skips ensuring $GO_VERSION is used
    kube::golang::internal::verify_go_version() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //
    // Directory and file names that begin with "." or "_" are ignored
    // by the go tool, as are directories named "testdata".
    //
    // # Configuration for downloading non-public code
    //
    // The go command defaults to downloading modules from the public Go module
    // mirror at proxy.golang.org. It also defaults to validating downloaded modules,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    On the "Performance" page of a build scan, you'll find a "Network Activity" tab.
    This tab lists information including:
    
    * the time spent downloading dependencies
    * the transfer rate of dependency downloads
    * a list of downloads sorted by download time
    
    In the following example, two slow dependency downloads took 20 and 40 seconds and slowed down the overall
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top