Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Wo (0.14 sec)

  1. src/archive/zip/writer_test.go

    		uncompressedSize uint64
    		compressedSize   uint64
    	}{
    		{
    			name:    "small store w desc",
    			content: []byte("gophers"),
    			method:  Store,
    			flags:   0x8,
    		},
    		{
    			name:    "small deflate wo desc",
    			content: bytes.Repeat([]byte("abcdefg"), 2048),
    			method:  Deflate,
    		},
    	}
    
    	// write a zip file
    	archive := new(bytes.Buffer)
    	w := NewWriter(archive)
    
    	for i := range files {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Sep 15 19:04:06 GMT 2023
    - 14.1K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusPartialContent)
    	partialObject, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    
    	c.Assert(string(partialObject), "Wo")
    }
    
    // TestListObjectsHandler - Setting valid parameters to List Objects
    // and then asserting the response with the expected one.
    func (s *TestSuiteCommon) TestListObjectsHandler(c *check) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
Back to top