Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for unzipTo (0.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    **Step 2 - Unpack the distribution**
    
    Unzip the distribution zip file in the directory of your choosing, e.g.:
    
    [subs="attributes"]
    ----
    ❯ mkdir /opt/gradle
    ❯ unzip -d /opt/gradle gradle-{gradleVersion}-bin.zip
    ❯ ls /opt/gradle/gradle-{gradleVersion}
    LICENSE  NOTICE  bin  README  init.d  lib  media
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

                return null;
            }
        }
    
        private void unzipLocal(File localZipFile, File distDir) throws IOException {
            try {
                unzip(localZipFile, distDir);
            } catch (IOException e) {
                logger.log("Could not unzip " + localZipFile.getAbsolutePath() + " to " + distDir.getAbsolutePath() + ".");
                logger.log("Reason: " + e.getMessage());
                throw e;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/Dockerfile

    # This corresponds to boringssl.googlesource.com/boringssl tag fips-20210429.
    ENV ClangV=12
    RUN apt-get update && \
            apt-get install --no-install-recommends -y cmake xz-utils wget unzip ca-certificates clang-$ClangV python
    
    # Download, validate, unpack, build, and install Ninja.
    ENV NinjaV=1.10.2
    ENV NinjaH=ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed
    RUN \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. maven-slf4j-provider/pom.xml

                  <includes>org/slf4j/simple/*.java</includes>
                </artifactItem>
              </artifactItems>
            </configuration>
            <executions>
              <execution>
                <id>unzip-slf4j-simple</id>
                <goals>
                  <goal>unpack</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top