Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 535 for deflate (0.11 sec)

  1. src/compress/flate/deflate.go

    		level = 6
    		fallthrough
    	case 2 <= level && level <= 9:
    		d.compressionLevel = levels[level]
    		d.initDeflate()
    		d.fill = (*compressor).fillDeflate
    		d.step = (*compressor).deflate
    	default:
    		return fmt.Errorf("flate: invalid compression level %d: want value in range [-2, 9]", level)
    	}
    	return nil
    }
    
    func (d *compressor) reset(w io.Writer) {
    	d.w.reset(w)
    	d.sync = false
    	d.err = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        successfulExtensions("permessage-deflate")
      }
    
      @Test
      @Throws(Exception::class)
      fun compressedMessagesNoClientContextTakeover() {
        successfulExtensions("permessage-deflate; client_no_context_takeover")
      }
    
      @Test
      @Throws(Exception::class)
      fun compressedMessagesNoServerContextTakeover() {
        successfulExtensions("permessage-deflate; server_no_context_takeover")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. src/compress/flate/inflate.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package flate implements the DEFLATE compressed data format, described in
    // RFC 1951.  The gzip and zlib packages implement access to DEFLATE-based file
    // formats.
    package flate
    
    import (
    	"bufio"
    	"io"
    	"math/bits"
    	"strconv"
    	"sync"
    )
    
    const (
    	maxCodeLen = 16 // max length of Huffman code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. src/compress/flate/flate_test.go

    	// according to the C zlib library, you can use the Python wrapper library:
    	// >>> hex_string = "010100feff11"
    	// >>> import zlib
    	// >>> zlib.decompress(hex_string.decode("hex"), -15) # Negative means raw DEFLATE
    	// '\x11'
    
    	testCases := []struct {
    		desc   string // Description of the stream
    		stream string // Hexstring of the input DEFLATE stream
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    		},
    
    		{
    			name:               "ignore compression on deflate",
    			compressionEnabled: true,
    			out:                largePayload,
    			mediaType:          "application/json",
    			req: &http.Request{
    				Header: http.Header{
    					"Accept-Encoding": []string{"deflate"},
    				},
    				URL: &url.URL{Path: "/path"},
    			},
    			wantCode: http.StatusOK,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/net/http/readrequest_test.go

    			"Host: www.techcrunch.com\r\n" +
    			"User-Agent: Fake\r\n" +
    			"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n" +
    			"Accept-Language: en-us,en;q=0.5\r\n" +
    			"Accept-Encoding: gzip,deflate\r\n" +
    			"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" +
    			"Keep-Alive: 300\r\n" +
    			"Content-Length: 7\r\n" +
    			"Proxy-Connection: keep-alive\r\n\r\n" +
    			"abcdef\n???",
    
    		&Request{
    			Method: "GET",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/distpack/pack.go

    		}
    	}()
    
    	zw := zip.NewWriter(out)
    	zw.RegisterCompressor(zip.Deflate, func(out io.Writer) (io.WriteCloser, error) {
    		return flate.NewWriter(out, flate.BestCompression)
    	})
    	for _, f = range a.Files {
    		h := check(zip.FileInfoHeader(f.Info()))
    		h.Name = f.Name
    		h.Method = zip.Deflate
    		w := check(zw.CreateHeader(h))
    		r := check(os.Open(f.Src))
    		check(io.Copy(w, r))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        client.listener.assertTextMessage(message)
      }
    
      @Test
      fun messagesCompressedWhenConfigured() {
        val headers = headersOf("Sec-WebSocket-Extensions", "permessage-deflate")
        client.initWebSocket(random, responseHeaders = headers)
        server.initWebSocket(random, responseHeaders = headers)
        val message = repeat('a', RealWebSocket.DEFAULT_MINIMUM_DEFLATE_SIZE.toInt())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/net/http/requestwrite_test.go

    			ProtoMinor: 1,
    			Header: Header{
    				"Accept":           {"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"},
    				"Accept-Charset":   {"ISO-8859-1,utf-8;q=0.7,*;q=0.7"},
    				"Accept-Encoding":  {"gzip,deflate"},
    				"Accept-Language":  {"en-us,en;q=0.5"},
    				"Keep-Alive":       {"300"},
    				"Proxy-Connection": {"keep-alive"},
    				"User-Agent":       {"Fake"},
    			},
    			Body:  nil,
    			Close: false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  10. src/compress/flate/deflate_test.go

    			}
    			mm++
    			if mm == 10 {
    				t.Fatal("Stopping")
    			}
    		}
    	}
    	t.Logf("got %d bytes", len(out1))
    }
    
    // TestBestSpeed tests that round-tripping through deflate and then inflate
    // recovers the original input. The Write sizes are near the thresholds in the
    // compressor.encSpeed method (0, 16, 128), as well as near maxStoreBlockSize
    // (65535).
    func TestBestSpeed(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top