Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for wyhash (0.25 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      /**
       * Applies a supplemental hash function to a given hash code, which defends against poor quality
       * hash functions. This is critical when the concurrent hash map uses power-of-two length hash
       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	*ft = *prototype
    
    	// Build a hash and minimally populate ft.
    	var hash uint32
    	for _, in := range in {
    		t := in.(*rtype)
    		args = append(args, t)
    		hash = fnv1(hash, byte(t.t.Hash>>24), byte(t.t.Hash>>16), byte(t.t.Hash>>8), byte(t.t.Hash))
    	}
    	if variadic {
    		hash = fnv1(hash, 'v')
    	}
    	hash = fnv1(hash, '.')
    	for _, out := range out {
    		t := out.(*rtype)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/runtime/map.go

    //
    // A map is just a hash table. The data is arranged
    // into an array of buckets. Each bucket contains up to
    // 8 key/elem pairs. The low-order bits of the hash are
    // used to select a bucket. Each bucket contains a few
    // high-order bits of each hash to distinguish the entries
    // within a single bucket.
    //
    // If more than 8 keys hash to a bucket, we chain on
    // extra buckets.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. go.sum

    github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw=
    github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
    github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
    github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			{
    				ID:   kubecontainer.ContainerID{ID: "id1"},
    				Name: "foo1", State: kubecontainer.ContainerStateRunning,
    				Hash: kubecontainer.HashContainer(&pod.Spec.Containers[0]),
    			},
    			{
    				ID:   kubecontainer.ContainerID{ID: "id2"},
    				Name: "foo2", State: kubecontainer.ContainerStateRunning,
    				Hash: kubecontainer.HashContainer(&pod.Spec.Containers[1]),
    			},
    			{
    				ID:   kubecontainer.ContainerID{ID: "id3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_test.go

    				Cookie: &envoyroute.RouteAction_HashPolicy_Cookie{
    					Name: "hash-cookie",
    					Ttl:  &ttl,
    				},
    			},
    		}
    		g.Expect(routes[0].GetRoute().GetHashPolicy()).To(ConsistOf(hashPolicy))
    		g.Expect(len(routes[0].GetRoute().GetRetryPolicy().RetryHostPredicate)).To(Equal(0))
    	})
    
    	t.Run("for virtual service with query param based ring hash", func(t *testing.T) {
    		g := NewWithT(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      /**
       * Applies a supplemental hash function to a given hash code, which defends against poor quality
       * hash functions. This is critical when the concurrent hash map uses power-of-two length hash
       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      $urls = ${kube_env}['NODE_BINARY_TAR_URL'].Split(",")
      $filename = Split-Path -leaf $urls[0]
      $hash = $null
      if ($kube_env.ContainsKey('NODE_BINARY_TAR_HASH')) {
        $hash = ${kube_env}['NODE_BINARY_TAR_HASH']
      }
      MustDownload-File -Hash $hash -OutFile $tmp_dir\$filename -URLs $urls
    
      tar xzvf $tmp_dir\$filename -C $tmp_dir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    			// (although the size is different).
    			// Also, for short symbols, the content hash is the identity function of
    			// the 8 bytes, and trailing zeros doesn't change the hash value, e.g.
    			// hash("A") == hash("A\0\0\0").
    			// So when two symbols have the same hash, we need to use the one with
    			// larger size.
    			if siz > s.size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    const (
    	ControllerRevisionHashLabelKey = "controller-revision-hash"
    	StatefulSetRevisionLabel       = ControllerRevisionHashLabelKey
    	DeprecatedRollbackTo           = "deprecated.deployment.rollback.to"
    	DeprecatedTemplateGeneration   = "deprecated.daemonset.template.generation"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top