Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for hashHead (0.14 sec)

  1. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // `handSize` is a small positive number that configures the
      // shuffle sharding of requests into queues.  When enqueuing a request
      // at this priority level the request's flow identifier (a string
      // pair) is hashed and the hash value is used to shuffle the list
      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // `handSize` is a small positive number that configures the
      // shuffle sharding of requests into queues.  When enqueuing a request
      // at this priority level the request's flow identifier (a string
      // pair) is hashed and the hash value is used to shuffle the list
      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // `handSize` is a small positive number that configures the
      // shuffle sharding of requests into queues.  When enqueuing a request
      // at this priority level the request's flow identifier (a string
      // pair) is hashed and the hash value is used to shuffle the list
      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/generated.proto

      // `handSize` is a small positive number that configures the
      // shuffle sharding of requests into queues.  When enqueuing a request
      // at this priority level the request's flow identifier (a string
      // pair) is hashed and the hash value is used to shuffle the list
      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // `handSize` is a small positive number that configures the
      // shuffle sharding of requests into queues.  When enqueuing a request
      // at this priority level the request's flow identifier (a string
      // pair) is hashed and the hash value is used to shuffle the list
      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_tls13.go

    // resends hs.hello, and reads the new ServerHello into hs.serverHello.
    func (hs *clientHandshakeStateTLS13) processHelloRetryRequest() error {
    	c := hs.c
    
    	// The first ClientHello gets double-hashed into the transcript upon a
    	// HelloRetryRequest. (The idea is that the server might offload transcript
    	// storage to the client in the cookie.) See RFC 8446, Section 4.4.1.
    	chHash := hs.transcript.Sum(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_tls13.go

    	return hs.c.writeChangeCipherRecord()
    }
    
    func (hs *serverHandshakeStateTLS13) doHelloRetryRequest(selectedGroup CurveID) (*keyShare, error) {
    	c := hs.c
    
    	// The first ClientHello gets double-hashed into the transcript upon a
    	// HelloRetryRequest. See RFC 8446, Section 4.4.1.
    	if err := transcriptMsg(hs.clientHello, hs.transcript); err != nil {
    		return nil, err
    	}
    	chHash := hs.transcript.Sum(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `handSize` is a small positive number that configures the
    	// shuffle sharding of requests into queues.  When enqueuing a request
    	// at this priority level the request's flow identifier (a string
    	// pair) is hashed and the hash value is used to shuffle the list
    	// of queues and deal a hand of the size specified here.  The
    	// request is put into one of the shortest queues in that hand.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    func TestMapNanGrowIterator(t *testing.T) {
    	m := make(map[float64]int)
    	nan := math.NaN()
    	const nBuckets = 16
    	// To fill nBuckets buckets takes LOAD * nBuckets keys.
    	nKeys := int(nBuckets * runtime.HashLoad)
    
    	// Get map to full point with nan keys.
    	for i := 0; i < nKeys; i++ {
    		m[nan] = i
    	}
    	// Trigger grow
    	m[1.0] = 1
    	delete(m, 1.0)
    
    	// Run iterator
    	found := make(map[int]struct{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

       * </ul>
       *
       * <p>A "coerced" IPv4 address is equivalent to itself.
       *
       * <p>NOTE: This method is failsafe for security purposes: ALL IPv6 addresses (except localhost
       * (::1)) are hashed to avoid the security risk associated with extracting an embedded IPv4
       * address that might permit elevated privileges.
       *
       * @param ip {@link InetAddress} to "coerce"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top