Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for strhash (0.13 sec)

  1. cmd/erasure-sets.go

    func sipHashMod(key string, cardinality int, id [16]byte) int {
    	if cardinality <= 0 {
    		return -1
    	}
    	// use the faster version as per siphash docs
    	// https://github.com/dchest/siphash#usage
    	k0, k1 := binary.LittleEndian.Uint64(id[0:8]), binary.LittleEndian.Uint64(id[8:16])
    	sum64 := siphash.Hash(k0, k1, []byte(key))
    	return int(sum64 % uint64(cardinality))
    }
    
    func crcHashMod(key string, cardinality int) int {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. cmd/global-heal.go

    				return
    			}
    
    			// We might land at .metacache, .trash, .multipart
    			// no need to heal them skip, only when bucket
    			// is '.minio.sys'
    			if bucket == minioMetaBucket {
    				if wildcard.Match("buckets/*/.metacache/*", entry.name) {
    					return
    				}
    				if wildcard.Match("tmp/.trash/*", entry.name) {
    					return
    				}
    				if wildcard.Match("multipart/*", entry.name) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/util/util.go

    	"istio.io/istio/pkg/config"
    	kubelabels "istio.io/istio/pkg/kube/labels"
    	"istio.io/istio/pkg/log"
    	pm "istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/proto/merge"
    	"istio.io/istio/pkg/util/strcase"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	// BlackHoleCluster to catch traffic from routes with unresolved clusters. Traffic arriving here goes nowhere.
    	BlackHoleCluster = "BlackHoleCluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/read.go

    	fmt.Fprintf(h, "module index %s %s %v\n", runtime.Version(), indexVersion, modroot)
    	return h.Sum(), nil
    }
    
    const modTimeCutoff = 2 * time.Second
    
    // dirHash returns an ActionID corresponding to the state of the package
    // located at filesystem path pkgdir.
    func dirHash(modroot, pkgdir string) (cache.ActionID, error) {
    	h := cache.NewHash("moduleIndex")
    	fmt.Fprintf(h, "modroot %s\n", modroot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. hack/tools/go.mod

    	github.com/davecgh/go-spew v1.1.1 // indirect
    	github.com/denis-tingaikin/go-header v0.4.3 // indirect
    	github.com/dnephin/pflag v1.0.7 // indirect
    	github.com/esimonov/ifshort v1.0.4 // indirect
    	github.com/ettle/strcase v0.2.0 // indirect
    	github.com/fatih/color v1.16.0 // indirect
    	github.com/fatih/structtag v1.2.0 // indirect
    	github.com/firefart/nonamedreturns v1.0.4 // indirect
    	github.com/fsnotify/fsnotify v1.5.4 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/dump/dump_test.go

    		{map[string]embedwrap{"key": tebw}, "(map[string]dump.embedwrap)map[key:{embed:(dump.embed){s:(string)test} e:(*dump.embed){s:(string)test}}]"},
    	}
    
    	for i, tc := range testCases {
    		s := ForHash(tc.a)
    		if tc.want != s {
    			t.Errorf("[%d]:\n\texpected %q\n\tgot      %q", i, tc.want, s)
    		}
    	}
    }
    
    func TestOneLine(t *testing.T) {
    	tcs := customString("test")
    	tpcs := pCustomString("&test")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/link/elf_test.go

    				var ret uint64
    				for _, s := range ef.Sections {
    					if s.Flags&elf.SHF_ALLOC == 0 {
    						continue
    					}
    					switch s.Type {
    					case elf.SHT_DYNSYM, elf.SHT_STRTAB, elf.SHT_REL, elf.SHT_RELA, elf.SHT_HASH, elf.SHT_GNU_HASH, elf.SHT_GNU_VERDEF, elf.SHT_GNU_VERNEED, elf.SHT_GNU_VERSYM:
    						ret += s.Size
    					}
    					if s.Flags&elf.SHF_WRITE != 0 && (strings.Contains(s.Name, ".got") || strings.Contains(s.Name, ".plt")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. docs/config/README.md

    stale_uploads_cleanup_interval  (duration)  set to change intervals when stale multipart uploads are expired (default: '6h')
    delete_cleanup_interval         (duration)  set to change intervals when deleted objects are permanently deleted from ".trash" folder (default: '5m')
    odirect                         (boolean)   set to enable or disable O_DIRECT for read and writes under special conditions. NOTE: do not disable O_DIRECT without prior testing (default: 'on')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  9. go.mod

    	github.com/ryanuber/go-glob v1.0.0
    	github.com/spaolacci/murmur3 v1.1.0
    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/spf13/viper v1.19.0
    	github.com/stoewer/go-strcase v1.3.0
    	github.com/stretchr/testify v1.9.0
    	github.com/vishvananda/netlink v1.2.1-beta.2.0.20240411215012-578e95cc3190
    	github.com/vishvananda/netns v0.0.4
    	github.com/yl2chen/cidranger v1.0.2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            when:
            run 'myTask', "-Pmy=value1"
            then:
            skipped(":myTask")
            file("build/myTask.txt").text == "value1"
    
            when:
            fails('myTask', "-Pmy=trash")
            then:
            failureDescriptionContains("Type 'MyTask' property 'strings' doesn't have a configured value.")
    
            when:
            fails('myTask')
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top