Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 296 for chunkOf (0.14 sec)

  1. src/net/http/response_test.go

    			Header:           Header{},
    			Close:            false,
    			ContentLength:    -1,
    			TransferEncoding: []string{"chunked"},
    		},
    
    		"Body here\n",
    	},
    
    	// Chunked response in response to a HEAD request
    	{
    		"HTTP/1.1 200 OK\r\n" +
    			"Transfer-Encoding: chunked\r\n" +
    			"\r\n",
    
    		Response{
    			Status:           "200 OK",
    			StatusCode:       200,
    			Proto:            "HTTP/1.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/runtime/map_benchmark_test.go

    			idx = 0
    		}
    	}
    }
    
    type chunk [17]byte
    
    func BenchmarkHashBytesSpeed(b *testing.B) {
    	// a bunch of chunks, each with a different alignment mod 16
    	var chunks [size]chunk
    	// initialize each to a different value
    	for i := 0; i < size; i++ {
    		chunks[i][0] = byte(i)
    	}
    	// put into a map
    	m := make(map[chunk]int, size)
    	for i, c := range chunks {
    		m[c] = i
    	}
    	idx := 0
    	b.ResetTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/image/png/reader_test.go

    	// These bytes come from https://go.dev/issue/54325
    	//
    	// Per the PNG spec, a PLTE chunk contains 3 (not 4) bytes per palette
    	// entry: RGB (not RGBA). The alpha value comes from the optional tRNS
    	// chunk. Here, the PLTE chunk (0x50, 0x4c, 0x54, 0x45, etc) has 16 entries
    	// (0x30 = 48 bytes) and the tRNS chunk (0x74, 0x52, 0x4e, 0x53, etc) has 1
    	// entry (0x01 = 1 byte) that sets the first palette entry's alpha to zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

        TF_ASSERT_OK(read_metadata.status());
      }
      ChunkMetadata chunk_metadata = read_metadata.value();
    
      std::vector<ChunkInfo> chunks_info = std::vector<ChunkInfo>(
          chunk_metadata.chunks().begin(), chunk_metadata.chunks().end());
    
      FieldIndex field_one_field_tag;
      field_one_field_tag.set_field(1);
      FieldIndex repeated_field_field_tag;
      repeated_field_field_tag.set_field(2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. src/net/http/cgi/host_test.go

    }
    
    func chunk(s string) string {
    	return fmt.Sprintf("%x\r\n%s\r\n", len(s), s)
    }
    
    // The CGI spec doesn't allow chunked requests.
    func TestCGIPostChunked(t *testing.T) {
    	testenv.MustHaveExec(t)
    	postReq := `POST /test.cgi?a=b HTTP/1.1
    Host: example.com
    Content-Type: application/x-www-form-urlencoded
    Transfer-Encoding: chunked
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc_64bit.go

    	summaryLevels = 5
    
    	// Constants for testing.
    	pageAlloc32Bit = 0
    	pageAlloc64Bit = 1
    
    	// Number of bits needed to represent all indices into the L1 of the
    	// chunks map.
    	//
    	// See (*pageAlloc).chunks for more details. Update the documentation
    	// there should this number change.
    	pallocChunksL1Bits = 13
    )
    
    // levelBits is the number of bits in the radix for a given level in the super summary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/internal/diff/diff.go

    	// and then printing diff chunks.
    	// To avoid setup/teardown cases outside the loop,
    	// tgs returns a leading {0,0} and trailing {len(x), len(y)} pair
    	// in the sequence of matches.
    	var (
    		done  pair     // printed up to x[:done.x] and y[:done.y]
    		chunk pair     // start lines of current chunk
    		count pair     // number of lines from each side in current chunk
    		ctext []string // lines for current chunk
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	r [2]uint64
    	s [2]uint64
    }
    
    type macGeneric struct {
    	macState
    
    	buffer [TagSize]byte
    	offset int
    }
    
    // Write splits the incoming message into TagSize chunks, and passes them to
    // update. It buffers incomplete chunks.
    func (h *macGeneric) Write(p []byte) (int, error) {
    	nn := len(p)
    	if h.offset > 0 {
    		n := copy(h.buffer[h.offset:], p)
    		if h.offset+n < TagSize {
    			h.offset += n
    			return nn, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/net/http/transfer.go

    	case *Request:
    		rr.Body = t.Body
    		rr.ContentLength = t.ContentLength
    		if t.Chunked {
    			rr.TransferEncoding = []string{"chunked"}
    		}
    		rr.Close = t.Close
    		rr.Trailer = t.Trailer
    	case *Response:
    		rr.Body = t.Body
    		rr.ContentLength = t.ContentLength
    		if t.Chunked {
    			rr.TransferEncoding = []string{"chunked"}
    		}
    		rr.Close = t.Close
    		rr.Trailer = t.Trailer
    	}
    
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. src/encoding/base32/base32_test.go

    			{"MZXW", "6YTB"},
    			{"MZXW", "6Y", "TB"},
    		}, nil},
    	}
    
    	for _, testcase := range testcases {
    		for _, chunks := range testcase.chunkCombinations {
    			pr, pw := io.Pipe()
    
    			// Write the encoded chunks into the pipe
    			go func() {
    				for _, chunk := range chunks {
    					pw.Write([]byte(chunk))
    				}
    				pw.Close()
    			}()
    
    			decoder := NewDecoder(StdEncoding, pr)
    			_, err := io.ReadAll(decoder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top