Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for Decompressor (0.13 sec)

  1. tools/packaging/common/envoy_bootstrap.json

                      "http_filters": [
                      {{- if .stats_compression }}
                      {
                        "name": "envoy.filters.http.compressor",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.filters.http.compressor.v3.Compressor",
                          {{- if eq .stats_compression "gzip"}}
                          "compressor_library": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

                      },
                      "http_filters": [
                      {
                        "name": "envoy.filters.http.compressor",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.filters.http.compressor.v3.Compressor",
                          "compressor_library": {
                            "name": "text_optimized",
                            "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/stats_compression_brotli_golden.json

                      },
                      "http_filters": [
                      {
                        "name": "envoy.filters.http.compressor",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.filters.http.compressor.v3.Compressor",
                          "compressor_library": {
                            "name": "text_optimized",
                            "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/archive/zip/example_test.go

    }
    
    func ExampleWriter_RegisterCompressor() {
    	// Override the default Deflate compressor with a higher compression level.
    
    	// Create a buffer to write our archive to.
    	buf := new(bytes.Buffer)
    
    	// Create a new zip archive.
    	w := zip.NewWriter(buf)
    
    	// Register a custom Deflate compressor.
    	w.RegisterCompressor(zip.Deflate, func(out io.Writer) (io.WriteCloser, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 27 00:22:03 UTC 2016
    - 2K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/stats_compression_gzip_golden.json

                      },
                      "http_filters": [
                      {
                        "name": "envoy.filters.http.compressor",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.filters.http.compressor.v3.Compressor",
                          "compressor_library": {
                            "name": "text_optimized",
                            "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/GzipArchiver.java

            super(resource);
        }
    
        @Override
        protected String getSchemePrefix() {
            return "gzip:";
        }
    
        public static ArchiveOutputStreamFactory getCompressor() {
            // this is not very beautiful but at some point we will
            // get rid of ArchiveOutputStreamFactory in favor of the writable Resource
            return destination -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 09 16:47:29 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  7. src/compress/zlib/writer_test.go

    	var buf bytes.Buffer
    	compressor, err := NewWriterLevelDict(&buf, BestCompression, input)
    	if err != nil {
    		t.Errorf("error in NewWriterLevelDict: %s", err)
    		return
    	}
    	compressor.Write(input)
    	compressor.Close()
    	const expectedMaxSize = 25
    	output := buf.Bytes()
    	if len(output) > expectedMaxSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

        private String metadataCharset;
    
        public Zip() {
            getArchiveExtension().set(ZIP_EXTENSION);
            allowZip64 = false;
        }
    
        @Internal
        protected ZipCompressor getCompressor() {
            switch (entryCompression) {
                case DEFLATED:
                    return new DefaultZipCompressor(allowZip64, ZipArchiveOutputStream.DEFLATED);
                case STORED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/ZipCopyActionTest.groovy

            given:
            def zipOutputStream = Mock(ZipArchiveOutputStream)
            zipOutputStream.close() >> {
                throw new Zip64RequiredException("xyz")
            }
    
            def compressor = new DefaultZipCompressor(false, ZipArchiveOutputStream.STORED) {
                @Override
                ZipArchiveOutputStream createArchiveOutputStream(File destination) {
                    zipOutputStream
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/Bzip2Archiver.java

            super(resource);
        }
    
        @Override
        protected String getSchemePrefix() {
            return "bzip2:";
        }
    
        public static ArchiveOutputStreamFactory getCompressor() {
            // this is not very beautiful but at some point we will
            // get rid of ArchiveOutputStreamFactory in favor of the writable Resource
            return destination -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 09 16:47:29 UTC 2019
    - 2.5K bytes
    - Viewed (0)
Back to top