Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for unzipTo (0.11 sec)

  1. hack/lib/etcd.sh

          download_file="etcd-v${ETCD_VERSION}-${os}-${arch}.zip"
          url="https://github.com/etcd-io/etcd/releases/download/v${ETCD_VERSION}/${download_file}"
          kube::util::download_file "${url}" "${download_file}"
          unzip -o "${download_file}"
          ln -fns "etcd-v${ETCD_VERSION}-${os}-${arch}" etcd
          rm "${download_file}"
        elif [[ ${os} == "linux" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/fetch.go

    	if err != nil {
    		return "", err
    	}
    
    	unlock, err := lockVersion(ctx, mod)
    	if err != nil {
    		return "", err
    	}
    	defer unlock()
    
    	ctx, span = trace.StartSpan(ctx, "unzip "+zipfile)
    	defer span.Done()
    
    	// Check whether the directory was populated while we were waiting on the lock.
    	_, dirErr := DownloadDir(ctx, mod)
    	if dirErr == nil {
    		return dir, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. docs/site-replication/run-replication-with-checksum-header.sh

    # Download AWS CLI
    echo -n "Download and install AWS CLI"
    rm -rf /usr/local/aws-cli || sudo rm -rf /usr/local/aws-cli
    curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
    unzip -qq awscliv2.zip
    ./aws/install || sudo ./aws/install
    echo "done"
    
    # Add credentials to ~/.aws/credentials
    if ! [ -d ~/.aws ]; then
    	mkdir -p ~/.aws
    fi
    cat >~/.aws/credentials <<EOF
    [enterprise]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. README.md

    The following commands show how to use the zip download:
    
        $ unzip fess-14.12.x.zip
        $ cd fess-14.12.x
        $ ./bin/fess
    
    For more details, see the [Installation Guide](https://fess.codelibs.org/14.12/install/index.html).
    
    ### Docker
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. cluster/images/etcd/Makefile

    		etcd_release_tmp_dir=$(shell mktemp -d); \
    		curl -sSL --retry 5 https://github.com/etcd-io/etcd/releases/download/v$$version/etcd-v$$version-windows-amd64.zip -o etcd-v$$version-windows-amd64.zip; \
    		unzip -q -d $$etcd_release_tmp_dir etcd-v$$version-windows-amd64.zip; \
    		rm etcd-v$$version-windows-amd64.zip; \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. cmd/erasure-object_test.go

    func TestGetObjectInlineNotInline(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	// Create a backend with 4 disks named disk{1...4}, this name convention
    	// because we will unzip some object data from a sample archive.
    	const numDisks = 4
    	path := t.TempDir()
    
    	var fsDirs []string
    	for i := 1; i <= numDisks; i++ {
    		fsDirs = append(fsDirs, filepath.Join(path, fmt.Sprintf("disk%d", i)))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. gradle/wrapper/gradle-wrapper.jar

    Install(Logger, Download, PathAssembler); public static Install$InstallCheck access$000(Install, java.io.File, String); public static void verifyDownloadChecks(String, java.io.File, String); public static boolean deleteDir(java.io.File); public static void unzip(java.io.File, java.io.File); public final void unzipLocal(java.io.File, java.io.File); public final void forceFetch(java.io.File, java.net.URI); } org/gradle/wrapper/Logger.class package org.gradle.wrapper; public final synchronized class Logger implements...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  8. cluster/gce/config-default.sh

    export ETCD_PROGRESS_NOTIFY_INTERVAL="${ETCD_PROGRESS_NOTIFY_INTERVAL:-5s}"
    
    # Optional: Install Pigz on Windows.
    # Pigz is a multi-core optimized version of unzip.exe.
    # It improves container image pull performance since most time is spent
    # unzipping the image layers to disk.
    export WINDOWS_ENABLE_PIGZ="${WINDOWS_ENABLE_PIGZ:-true}"
    
    # Enable Windows DSR (Direct Server Return)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. cluster/gce/config-test.sh

    export ETCD_PROGRESS_NOTIFY_INTERVAL="${ETCD_PROGRESS_NOTIFY_INTERVAL:-5s}"
    
    # Optional: Install Pigz on Windows.
    # Pigz is a multi-core optimized version of unzip.exe.
    # It improves container image pull performance since most time is spent
    # unzipping the image layers to disk.
    export WINDOWS_ENABLE_PIGZ="${WINDOWS_ENABLE_PIGZ:-true}"
    
    # Enable Windows DSR (Direct Server Return)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. cluster/log-dump/log-dump.sh

            echo "Downloaded diagnostics log from ${logs_archive_in_gcs}"
            break
          else
            sleep 10
          fi
        done
    
        if [[ -f "${temp_local_path}" ]]; then
          unzip "${temp_local_path}" -d "${dest_dir}" > /dev/null
          rm -f "${temp_local_path}"
        fi
    }
    
    # Saves log files from SSH
    function save-windows-logs-via-ssh() {
        local node="${1}"
        local dest_dir="${2}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top