Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 766 for zipM (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

        zip(this, suffix) { p, s -> p to s }
    
    
    @JvmName("timesUnitT")
    internal
    inline operator fun <T> Parser<Unit>.times(crossinline suffix: Parser<T>): Parser<T> =
        zip(this, suffix) { _, s -> s }
    
    
    @JvmName("timesUnitUnit")
    internal
    inline operator fun Parser<Unit>.times(crossinline suffix: Parser<Unit>): Parser<Unit> =
        zipM(this, suffix) { _, _ -> unitSuccess }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

         * practically removes these limits and is therefore required for building large zips.
         * <p>
         * However, not all Zip readers support the Zip64 extensions.
         * Notably, the {@link java.util.zip.ZipInputStream} JDK class does not support Zip64 for versions earlier than Java 7.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. src/math/rand/zipf.go

    package rand
    
    import "math"
    
    // A Zipf generates Zipf distributed variates.
    type Zipf struct {
    	r            *Rand
    	imax         float64
    	v            float64
    	q            float64
    	s            float64
    	oneminusQ    float64
    	oneminusQinv float64
    	hxm          float64
    	hx0minusHxm  float64
    }
    
    func (z *Zipf) h(x float64) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/math/rand/v2/zipf.go

    package rand
    
    import "math"
    
    // A Zipf generates Zipf distributed variates.
    type Zipf struct {
    	r            *Rand
    	imax         float64
    	v            float64
    	q            float64
    	s            float64
    	oneminusQ    float64
    	oneminusQinv float64
    	hxm          float64
    	hx0minusHxm  float64
    }
    
    func (z *Zipf) h(x float64) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 14:29:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ReuseArchiveIntegrationTest.groovy

         */
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "pre-existing content in cache dir with same hash is okay"() {
            file("contents/hello.txt") << "hello"
            file("contents").zipTo(file("hello.zip"))
            FileHasher hasher = new DefaultFileHasher(new DefaultStreamHasher())
            def hash = hasher.hash(file("hello.zip"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. lib/time/zoneinfo.zip

    Dmitri Shuralyov <******@****.***> 1706824550 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (1)
Back to top