Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for chunkOf (0.15 sec)

  1. cmd/test-utils_test.go

    	"Content-Type":  true,
    	"Content-Md5":   true,
    	"User-Agent":    true,
    }
    
    // calculateSignedChunkLength - calculates the length of chunk metadata
    func calculateSignedChunkLength(chunkDataSize int64) int64 {
    	return int64(len(fmt.Sprintf("%x", chunkDataSize))) +
    		17 + // ";chunk-signature="
    		64 + // e.g. "f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2"
    		2 + // CRLF
    		chunkDataSize +
    		2 // CRLF
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.go

    	var h1, h2 uint64
    	g := &gcmAsm{cipher: c, ks: c.enc[:c.l], nonceSize: nonceSize, tagSize: tagSize}
    
    	hle := make([]byte, gcmBlockSize)
    
    	c.Encrypt(hle, hle)
    
    	// Reverse the bytes in each 8 byte chunk
    	// Load little endian, store big endian
    	if runtime.GOARCH == "ppc64le" {
    		h1 = byteorder.LeUint64(hle[:8])
    		h2 = byteorder.LeUint64(hle[8:])
    	} else {
    		h1 = byteorder.BeUint64(hle[:8])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__batch__v1_openapi.json

              "in": "query",
              "name": "limit",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    			io.CopyN(gz, rand.Reader, nRandBytes)
    		}
    		gz.Close()
    	})).ts
    	c := ts.Client()
    
    	for _, chunked := range []string{"1", "0"} {
    		// First fetch something large, but only read some of it.
    		res, err := c.Get(ts.URL + "/?body=large&chunked=" + chunked)
    		if err != nil {
    			t.Fatalf("large get: %v", err)
    		}
    		buf := make([]byte, len(testString))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. api/go1.23.txt

    pkg slices, func AppendSeq[$0 interface{ ~[]$1 }, $1 interface{}]($0, iter.Seq[$1]) $0 #61899
    pkg slices, func Backward[$0 interface{ ~[]$1 }, $1 interface{}]($0) iter.Seq2[int, $1] #61899
    pkg slices, func Chunk[$0 interface{ ~[]$1 }, $1 interface{}]($0, int) iter.Seq[$0] #53987
    pkg slices, func Collect[$0 interface{}](iter.Seq[$0]) []$0 #61899
    pkg slices, func Repeat[$0 interface{ ~[]$1 }, $1 interface{}]($0, int) $0 #65238
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/index/suffixarray/suffixarray.go

    	// read buffer size
    	var size64 int64
    	size64, err = readInt(r, buf)
    	if err != nil {
    		return
    	}
    	if int64(int(size64)) != size64 || int(size64) < 0 {
    		// We never write chunks this big anyway.
    		return 0, errTooBig
    	}
    	size := int(size64)
    
    	// read buffer w/o the size
    	if _, err = io.ReadFull(r, buf[binary.MaxVarintLen64:size]); err != nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. cmd/endpoint-ellipses.go

    	}
    
    	ep.argPatterns = argPatterns
    
    	return ep, nil
    }
    
    // GetAllSets - parses all ellipses input arguments, expands them into
    // corresponding list of endpoints chunked evenly in accordance with a
    // specific set size.
    // For example: {1...64} is divided into 4 sets each of size 16.
    // This applies to even distributed setup syntax as well.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	AggregatedDiscoveryEndpoint featuregate.Feature = "AggregatedDiscoveryEndpoint"
    
    	// owner: @smarterclayton
    	// alpha: v1.8
    	// beta: v1.9
    	// stable: 1.29
    	//
    	// Allow API clients to retrieve resource lists in chunks rather than
    	// all at once.
    	APIListChunking featuregate.Feature = "APIListChunking"
    
    	// owner: @MikeSpreitzer @yue9944882
    	// alpha: v1.18
    	// beta: v1.20
    	// stable: 1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/nettest/conntest.go

    			t.Errorf("unexpected Read error: %v", err)
    			break
    		}
    	}
    	if err := <-errCh; err != nil {
    		t.Errorf("unexpected Write error: %v", err)
    	}
    }
    
    // chunkedCopy copies from r to w in fixed-width chunks to avoid
    // causing a Write that exceeds the maximum packet size for packet-based
    // connections like "unixpacket".
    // We assume that the maximum packet size is at least 1024.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/runtime/os_plan9.go

    		gp.sigcode1 = uintptr(atolwhex(addr))
    		if gp.sigcode1 < 0x1000 {
    			panicmem()
    		}
    		if gp.paniconfault {
    			panicmemAddr(gp.sigcode1)
    		}
    		if inUserArenaChunk(gp.sigcode1) {
    			// We could check that the arena chunk is explicitly set to fault,
    			// but the fact that we faulted on accessing it is enough to prove
    			// that it is.
    			print("accessed data from freed user arena ", hex(gp.sigcode1), "\n")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top