Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for uncompressed (0.15 sec)

  1. platforms/core-runtime/wrapper-shared/src/integTest/groovy/org/gradle/integtests/PathTraversalCheckerIntegrationTest.groovy

                def artifactType = Attribute.of('artifactType', String)
                def compressed = Attribute.of('compressed', Boolean)
    
                dependencies {
                    attributesSchema {
                        attribute(compressed)
                    }
                    artifactTypes {
                        zip {
                            attributes.attribute(compressed, true)
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. docs/compression/README.md

    ### 4. Excluded Types
    
    - Already compressed objects are not fit for compression since they do not have compressible patterns.
    Such objects do not produce efficient [`LZ compression`](https://en.wikipedia.org/wiki/LZ77_and_LZ78)
    which is a fitness factor for a lossless data compression.
    
    Pre-compressed input typically compresses in excess of 2GiB/s per core,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. okhttp-brotli/src/main/kotlin/okhttp3/brotli/BrotliInterceptor.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.brotli
    
    import okhttp3.Interceptor
    import okhttp3.Response
    import okhttp3.brotli.internal.uncompress
    
    /**
     * Transparent Brotli response support.
     *
     * Adds Accept-Encoding: br to request and checks (and strips) for Content-Encoding: br in
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/compress/lzw/reader_test.go

    		b.Fatalf("test file has no data")
    	}
    
    	getInputBuf := func(buf []byte, n int) []byte {
    		compressed := new(bytes.Buffer)
    		w := NewWriter(compressed, LSB, 8)
    		for i := 0; i < n; i += len(buf) {
    			if len(buf) > n-i {
    				buf = buf[:n-i]
    			}
    			w.Write(buf)
    		}
    		w.Close()
    		return compressed.Bytes()
    	}
    
    	for e := 4; e <= 6; e++ {
    		n := int(math.Pow10(e))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ArchiveOperations.java

        /**
         * Creates resource that points to a gzip compressed file at the given path.
         * The path is evaluated as per {@link Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link Project#file(Object)}.
         * @since 7.0
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

         * Note that the file returned by this method may not necessarily have the same contents as the resource. For example, the file may be compressed,
         * contain text encoded with a different encoding or represent a directory.
         *
         * @return A file location this resource. Returns null if this resource is not available as a file.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/compress/lzw/writer.go

    	// lower 12 bits of a valid entry must be a non-literal code.
    	invalidEntry = 0
    )
    
    // Writer is an LZW compressor. It writes the compressed form of the data
    // to an underlying writer (see [NewWriter]).
    type Writer struct {
    	// w is the writer that compressed bytes are written to.
    	w writer
    	// litWidth is the width in bits of literal codes.
    	litWidth uint
    	// order, write, bits, nBits and width are the state for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

            when:
            sourceDir.file("newdir").createDir()
    
            then:
            buildTriggeredAndSucceeded()
            executedAndNotSkipped(":zip")
        }
    
        def "using compressed files as inputs - #type #packType #source - readonly #readonly"() {
            given:
            def packDir = file("pack").createDir()
            def outputDir = file("unpack")
            def sourceFile = file(source)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/crypto/rand/rand_test.go

    	if n != len(b) || err != nil {
    		t.Fatalf("ReadFull(buf) = %d, %s", n, err)
    	}
    
    	var z bytes.Buffer
    	f, _ := flate.NewWriter(&z, 5)
    	f.Write(b)
    	f.Close()
    	if z.Len() < len(b)*99/100 {
    		t.Fatalf("Compressed %d -> %d", len(b), z.Len())
    	}
    }
    
    func TestReadEmpty(t *testing.T) {
    	n, err := Reader.Read(make([]byte, 0))
    	if n != 0 || err != nil {
    		t.Fatalf("Read(make([]byte, 0)) = %d, %v", n, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.archive;
    
    import java.io.Closeable;
    import java.io.File;
    
    /**
     * A coordinator that can be used to manage access to decompressed data extracted from archive files like zip and tars.
     *
     * <p>
     * For a given build tree, only a single process is allowed write access to extract archives at a time.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top