Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 538 for gtar (0.06 sec)

  1. testing/performance/src/templates/archivePerformanceProject/build.gradle

        from "archive-contents"
        archiveFileName = "archive.zip"
    }
    
    tasks.register("tar", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar"
    }
    
    tasks.register("tarGz", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar.gz"
        compression = 'gzip'
    }
    
    tasks.withType(AbstractArchiveTask).configureEach {
        destinationDirectory = layout.buildDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    [kubernetes-client-windows-amd64.tar.gz](https://dl.k8s.io/v1.30.2/kubernetes-client-windows-amd64.tar.gz) | aa8a4e2bf8894c5b07ecbe15f9e703e5ca102cb13d84edec7c58c3e4c6100b0217238dc6e0f9cd91482aee5774296435cbb49802cb29bc42c4c08114d74390c8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/upgrade/README.md

                memory: 40m
    ```
    
    1. Run `tar cf 1.x.y-install.yaml.tar 1.x.y-install.yaml`
    
    1. Generate a new CNI Daemonset manifest with the following settings:
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: gcr.io/istio-release
      profile: empty
      components:
        cni:
          enabled: true
          namespace: kube-system
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. ci/official/requirements_updater/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:12:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

    [kubernetes-client-darwin-amd64.tar.gz](https://dl.k8s.io/v1.4.12/kubernetes-client-darwin-amd64.tar.gz) | `4504bc965bd1b5bcea91d18c3a879252026796fdd251b72e3541499c65ac20e0`
    [kubernetes-client-linux-386.tar.gz](https://dl.k8s.io/v1.4.12/kubernetes-client-linux-386.tar.gz) | `adf1f939db2da0b87bca876d9bee69e0d6bf4ca4a78e64195e9a08960e5ef010`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  6. WORKSPACE

            "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
        ],
    )
    
    http_archive(
        name = "rules_java",
        sha256 = "c73336802d0b4882e40770666ad055212df4ea62cfa6edf9cb0f9d29828a0934",
        url = "https://github.com/bazelbuild/rules_java/releases/download/5.3.5/rules_java-5.3.5.tar.gz",
    )
    
    http_archive(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/archive/tar/common.go

    var (
    	ErrHeader          = errors.New("archive/tar: invalid tar header")
    	ErrWriteTooLong    = errors.New("archive/tar: write too long")
    	ErrFieldTooLong    = errors.New("archive/tar: header field too long")
    	ErrWriteAfterClose = errors.New("archive/tar: write after close")
    	ErrInsecurePath    = errors.New("archive/tar: insecure file path")
    	errMissData        = errors.New("archive/tar: sparse file references non-existent data")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/TarFileTreeTest.java

                fail();
            } catch (InvalidUserDataException e) {
                assertThat(e.getMessage(), containsString("Cannot expand TAR '" + archiveFile + "'"));
            }
        }
    
        @Test
        public void wrapsFailureToUnarchiveFile() {
            archiveFile.write("not a tar file");
    
            try {
                tree.visit(new EmptyFileVisitor());
                fail();
            } catch (GradleException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/TarCopyActionSpec.groovy

        private TarCopyAction action
    
    
        def "creates tar file"() {
            expect:
            final TestFile tarFile = initializeTarFile(temporaryFolder.testDirectory.file("test.tar"), new SimpleCompressor())
            tarAndUntarAndCheckFileContents(tarFile)
        }
    
        def "creates gzip compressed tar file"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. cmd/untar.go

    			name = trimLeadingSlash(pathJoin(name, slashSeparator))
    		case tar.TypeReg, tar.TypeChar, tar.TypeBlock, tar.TypeFifo, tar.TypeGNUSparse: // = regular
    			name = trimLeadingSlash(path.Clean(name))
    		default:
    			// ignore symlink'ed
    			continue
    		}
    		if o.prefixAll != "" {
    			name = pathJoin(o.prefixAll, name)
    		}
    
    		// Do small files async
    		n++
    		if header.Size <= smallFileThreshold {
    			asyncWriters <- struct{}{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top