Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 948 for Lzip (0.06 sec)

  1. src/compress/gzip/gzip.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gzip
    
    import (
    	"compress/flate"
    	"errors"
    	"fmt"
    	"hash/crc32"
    	"io"
    	"time"
    )
    
    // These constants are copied from the flate package, so that code that imports
    // "compress/gzip" does not also have to import "compress/flate".
    const (
    	NoCompression      = flate.NoCompression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/zip.kt

            }
        }
    }
    
    
    fun unzipTo(outputDirectory: File, zipFile: File) {
        ZipFile(zipFile).use { zip ->
            for (entry in zip.entries()) {
                unzipEntryTo(outputDirectory, zip, entry)
            }
        }
    }
    
    
    private
    fun unzipEntryTo(outputDirectory: File, zip: ZipFile, entry: ZipEntry) {
        val output = outputDirectory.resolve(safePathName(entry.name))
        if (entry.isDirectory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 3.5K bytes
    - Viewed (1)
  3. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // license that can be found in the LICENSE file.
    
    // Package zip provides functions for creating and extracting module zip files.
    //
    // Module zip files have several restrictions listed below. These are necessary
    // to ensure that module zip files can be extracted consistently on supported
    // platforms and file systems.
    //
    // • All file paths within a zip file must start with "<module>@<version>/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  4. fastapi/middleware/gzip.py

    from starlette.middleware.gzip import GZipMiddleware as GZipMiddleware  # noqa...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Dec 20 18:50:00 UTC 2020
    - 79 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

    import javax.annotation.Nullable;
    import java.nio.charset.Charset;
    
    /**
     * Assembles a ZIP archive.
     *
     * The default is to compress the contents of the zip.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Zip extends AbstractArchiveTask {
        public static final String ZIP_EXTENSION = "zip";
        private ZipEntryCompression entryCompression = ZipEntryCompression.DEFLATED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

                    filePermissions {}
                    dirPermissions {}
                }
                task aZip(type: Zip) {
                    reproducibleFileOrder = true
                    from('dir2')
                    destinationDirectory = buildDir
                    archiveFileName = 'test.zip'
                    filePermissions {}
                    dirPermissions {}
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <mime-type type="application/gzip">
        <_comment>Gzip Compressed Archive</_comment>
        <alias type="application/x-gzip"/>
        <alias type="application/x-gunzip"/>
        <alias type="application/gzipped"/>
        <alias type="application/gzip-compressed"/>
        <alias type="application/x-gzip-compressed"/>
        <alias type="gzip/document"/>
        <magic priority="45">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. src/main/assemblies/zip-bin.xml

    <?xml version="1.0"?>
    <assembly>
    	<id>zip</id>
    	<formats>
    		<format>zip</format>
    	</formats>
    
    	<includeBaseDirectory>false</includeBaseDirectory>
    
    	<componentDescriptors>
    		<componentDescriptor>src/main/assemblies/common-bin.xml
    		</componentDescriptor>
    	</componentDescriptors>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 13 08:20:29 UTC 2015
    - 291 bytes
    - Viewed (0)
  9. cmd/s3-zip-handlers.go

    	// Peek into a zip archive
    	xMinIOExtract = "x-minio-extract"
    )
    
    // splitZipExtensionPath splits the S3 path to the zip file and the path inside the zip:
    //
    //	e.g  /path/to/archive.zip/backup-2021/myimage.png => /path/to/archive.zip, backup/myimage.png
    func splitZipExtensionPath(input string) (zipPath, object string, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. ci/devinfra/docker_windows/Dockerfile

        $env:PATH = [Environment]::GetEnvironmentVariable('PATH', 'Machine'); \
        choco feature enable -n allowGlobalConfirmation; \
        choco install 7zip; \
        choco install 7zip.install; \
        choco install 7zip.portable; \
        choco install anaconda2 --version 5.0.1; \
        choco install anaconda3 --version 5.0.1; \
        choco install android-sdk --version 25.2.3.1; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top