Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for strhash (0.13 sec)

  1. pkg/kubelet/cm/dra/state/checkpoint.go

    		})
    	}
    	oldcheckpoint := &DRAManagerCheckpointWithoutResourceHandles{
    		Version:  checkpointVersion,
    		Entries:  entries,
    		Checksum: 0,
    	}
    	// Calculate checksum for old checkpoint
    	object := dump.ForHash(oldcheckpoint)
    	object = strings.Replace(object, "DRAManagerCheckpointWithoutResourceHandles", "DRAManagerCheckpoint", 1)
    	object = strings.Replace(object, "ClaimInfoStateListWithoutResourceHandles", "ClaimInfoStateList", 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 15:23:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/state/checkpoint.go

    	if cp.Checksum == 0 {
    		// accept empty checksum for compatibility with old file backend
    		return nil
    	}
    
    	ck := cp.Checksum
    	cp.Checksum = 0
    	object := dump.ForHash(cp)
    	object = strings.Replace(object, "CPUManagerCheckpointV1", "CPUManagerCheckpoint", 1)
    	cp.Checksum = ck
    
    	hash := fnv.New32a()
    	fmt.Fprintf(hash, "%v", object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    				var host string
    				if restConfig != nil {
    					host = restConfig.Host
    				}
    				crHash := strings.Join([]string{crName, crNamespace, componentName, host}, "-")
    				oh := object.NewK8sObject(&unstructured.Unstructured{Object: unsObj}, nil, nil).Hash()
    				cache.RemoveObject(crHash, oh)
    				return true
    			}
    			return false
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    // If the hash does not match go.sum (or the sumdb if enabled), hashZip returns
    // an error and does not write ziphashfile.
    func hashZip(mod module.Version, zipfile, ziphashfile string) (err error) {
    	hash, err := dirhash.HashZip(zipfile, dirhash.DefaultHash)
    	if err != nil {
    		return err
    	}
    	if err := checkModSum(mod, hash); err != nil {
    		return err
    	}
    	hf, err := lockedfile.Create(ziphashfile)
    	if err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/Hashing.java

       * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}.
       *
       * @since 15.0
       */
      public static HashFunction sipHash24() {
        return SipHashFunction.SIP_HASH_24;
      }
    
      /**
       * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit
       * SipHash-2-4 algorithm</a> using the given seed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

     * test methods in these degenerate classloaders.
     */
    
    public class AbstractFutureFallbackAtomicHelperTest extends TestCase {
    
      // stash these in static fields to avoid loading them over and over again (speeds up test
      // execution significantly)
    
      /**
       * This classloader disallows {@link sun.misc.Unsafe}, which will prevent us from selecting our
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/go.mod

    	github.com/prometheus/procfs v0.12.0 // indirect
    	github.com/sirupsen/logrus v1.9.3 // indirect
    	github.com/soheilhy/cmux v0.1.5 // indirect
    	github.com/spf13/cobra v1.8.0 // indirect
    	github.com/stoewer/go-strcase v1.2.0 // indirect
    	github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 // indirect
    	github.com/x448/float16 v0.8.4 // indirect
    	github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Hashing.java

       * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}.
       *
       * @since 15.0
       */
      public static HashFunction sipHash24() {
        return SipHashFunction.SIP_HASH_24;
      }
    
      /**
       * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit
       * SipHash-2-4 algorithm</a> using the given seed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/modules.txt

    # golang.org/x/mod v0.18.0
    ## explicit; go 1.18
    golang.org/x/mod/internal/lazyregexp
    golang.org/x/mod/modfile
    golang.org/x/mod/module
    golang.org/x/mod/semver
    golang.org/x/mod/sumdb
    golang.org/x/mod/sumdb/dirhash
    golang.org/x/mod/sumdb/note
    golang.org/x/mod/sumdb/tlog
    golang.org/x/mod/zip
    # golang.org/x/sync v0.7.0
    ## explicit; go 1.18
    golang.org/x/sync/errgroup
    golang.org/x/sync/semaphore
    # golang.org/x/sys v0.21.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/go.mod

    	github.com/prometheus/common v0.48.0 // indirect
    	github.com/prometheus/procfs v0.12.0 // indirect
    	github.com/sirupsen/logrus v1.9.3 // indirect
    	github.com/soheilhy/cmux v0.1.5 // indirect
    	github.com/stoewer/go-strcase v1.2.0 // indirect
    	github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 // indirect
    	github.com/x448/float16 v0.8.4 // indirect
    	github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top