Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 87 for unzipTo (0.12 sec)

  1. internal/http/transports.go

    		TLSHandshakeTimeout:   10 * time.Second,
    		TLSClientConfig:       &tlsClientConfig,
    		ForceAttemptHTTP2:     s.EnableHTTP2,
    		// Go net/http automatically unzip if content-type is
    		// gzip disable this feature, as we are always interested
    		// in raw stream.
    		DisableCompression: true,
    	}
    
    	// https://github.com/golang/go/issues/23559
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. internal/config/dns/operator_dns.go

    			TLSHandshakeTimeout:   3 * time.Second,
    			ExpectContinueTimeout: 3 * time.Second,
    			TLSClientConfig: &tls.Config{
    				RootCAs: args.rootCAs,
    			},
    			// Go net/http automatically unzip if content-type is
    			// gzip disable this feature, as we are always interested
    			// in raw stream.
    			DisableCompression: true,
    		},
    	}
    	return args, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [file].
         * @return The file tree.
         */
        fun zipTree(zipPath: Any): FileTree
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

        private void extractJarContents(String sourceJarPath, File destDir) throws IOException {
            FileUtils.deleteDirectory(destDir);
            if (!destDir.mkdir()) {
                throw new IOException("Could not create root unzip directory " + destDir);
            }
    
            try (JarFile sourceJar = new JarFile(sourceJarPath)) {
                for (JarEntry sourceJarEntry : Collections.list(sourceJar.entries())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

            result.assertTaskOrder(generateFoo.fullPath, cleanFoo.fullPath, clean.fullPath)
            result.assertTaskOrder(generateBar.fullPath, cleanBar.fullPath, clean.fullPath)
    
            and:
            outputContains("Executing unzip transform...")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20195")
        def "producer task that finalizes a destroyer task will run after the destroyer even when ordered first (type: #type)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [KotlinInitScript.copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [KotlinInitScript.file].
         * @return The file tree.
         */
        @Suppress("unused")
        fun zipTree(zipPath: Any): FileTree =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [file].
         * @return The file tree.
         */
        @Suppress("unused")
        fun zipTree(zipPath: Any): FileTree =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. 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)
Back to top