Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 94 for unzipTo (0.4 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallationDownloader.groovy

            def target = File.createTempDir("maven-install-$mavenVersion-", "")
            def ant = new AntBuilder()
            ant.mkdir(dir: target)
            ant.unzip(src: binArchive, dest: target)
            mavenInstallDirectory(target, mavenVersion)
        }
    
        private File moveToInstallsRoot(File tmpHome) {
            FileUtils.moveDirectoryToDirectory(tmpHome, installsRoot, true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    dependencies {
        baseline("gradle:gradle:${compatibilityBaselineVersion}@zip")
    
        // This transform takes the Gradle zip distribution,
        // and unzips the Gradle jar files that it contains in a directory
        registerTransform(ExplodeZipAndFindJars) {
            from.attribute(ARTIFACT_TYPE, 'zip')
            to.attribute(ARTIFACT_TYPE, 'gradle-libs-dir')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. hack/lib/protoc.sh

          else
            kube::log::info "This install script does not support ${os}/${arch}"
            return 1
          fi
          kube::util::download_file "${url}" "${download_file}"
          unzip -o "${download_file}" -d "${download_folder}"
          ln -fns "${download_folder}" protoc
          mv protoc/bin/protoc protoc/protoc
          chmod -R +rX protoc/protoc
          rm -fr protoc/include
          rm "${download_file}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top