Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 538 for gtar (0.11 sec)

  1. cluster/get-kube-binaries.sh

      # Tarball looks like kubernetes/{client,server,test}/bin/BINARY"
      tar -xzf "${tarfile}" --strip-components 3 -C "${platforms_dir}"
    }
    
    detect_kube_release
    DOWNLOAD_URL_PREFIX="${KUBERNETES_RELEASE_URL}/${KUBE_VERSION}"
    
    SERVER_PLATFORM="linux"
    SERVER_ARCH="${KUBERNETES_SERVER_ARCH:-amd64}"
    SERVER_TAR="kubernetes-server-${SERVER_PLATFORM}-${SERVER_ARCH}.tar.gz"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    `__distributionName__DistTar` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.Tar.html[Tar]::
    Creates a TAR archive of the distribution contents.
    
    `assemble__DistributionName__Dist` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    _Depends on_: `__distributionName__DistTar`, `__distributionName__DistZip`
    +
    Creates ZIP and TAR archives of the distribution contents.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/archive/tar/testdata/pax-bad-hdr-file.tar

    Joe Tsai <******@****.***> 1472512232 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 23:22:53 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

            file('build/distributions/custom-baz.zip').assertIsFile()
            file('build/distributions/TestProject-foo.tar').assertIsFile()
            file('build/distributions/custom-bar.tar').assertIsFile()
            file('build/distributions/custom-baz.tar').assertIsFile()
    
            file('build/install/TestProject-foo').assertIsDir()
            file('build/install/custom-bar').assertIsDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. release/downloadIstioCtl.sh

    tmp=$(mktemp -d /tmp/istioctl.XXXXXX)
    NAME="istioctl-${ISTIO_VERSION}"
    
    URL="https://github.com/istio/istio/releases/download/${ISTIO_VERSION}/istioctl-${ISTIO_VERSION}-${OSEXT}.tar.gz"
    ARCH_URL="https://github.com/istio/istio/releases/download/${ISTIO_VERSION}/istioctl-${ISTIO_VERSION}-${OSEXT}-${ISTIO_ARCH}.tar.gz"
    
    with_arch() {
      printf "\nDownloading %s from %s ...\n" "${NAME}" "$ARCH_URL"
      if ! curl -o /dev/null -sIf "$ARCH_URL"; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/impl/DefaultFileCollectionSnapshotterTest.groovy

            then:
            assertSingleFileSnapshot(snapshot)
    
            when:
            TestFile tar = tempDir.file('archive.tar')
            archiveBaseDir.tarTo(tar)
            def tarTree = TestFiles.fileOperations(tempDir, testFileProvider()).tarTree(tar)
            snapshot = snapshotter.snapshot(tarTree).snapshot
    
            then:
            assertSingleFileSnapshot(snapshot)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:25:23 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingTypeBenchmark.java

     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Param;
    
    public class TaskOutputPackagingTypeBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar.snappy", "tar.snappy.commons", "tar.snappy.dain"})
        String packer;
    
        @Param({"direct", "buffered"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. .github/workflows/test-redistribute.yml

            env:
              TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
            run: python -m build --sdist
          - name: Decompress source distribution
            run: |
              cd dist
              tar xvf fastapi*.tar.gz
          - name: Install test dependencies
            run: |
              cd dist/fastapi*/
              pip install -r requirements-tests.txt
            env:
              TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 18:31:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. ci/official/wheel_test/WORKSPACE

        urls = [
            "https://storage.googleapis.com/mirror.tensorflow.org/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
            "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
        ],
    )
    
    http_archive(
        name = "rules_python",
        sha256 = "9d04041ac92a0985e344235f5d946f71ac543f1b1565f2cdbc9a2aaee8adf55b",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. release/downloadIstioCandidate.sh

      tar -xzf "${filename}"
      rm "${filename}"
    }
    
    without_arch() {
      printf "\nDownloading %s from %s ..." "$NAME" "$URL"
      if ! curl -o /dev/null -sIf "$URL"; then
        printf "\n%s is not found, please specify a valid ISTIO_VERSION\n" "$URL"
        exit 1
      fi
      curl -fsLO "$URL"
      filename="istio-${ISTIO_VERSION}-${OSEXT}.tar.gz"
      tar -xzf "${filename}"
      rm "${filename}"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top