Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for ziphash (3.19 sec)

  1. 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)
  2. src/crypto/tls/handshake_client.go

    			certVerify.signatureAlgorithm = signatureAlgorithm
    		} else {
    			sigType, sigHash, err = legacyTypeAndHashFromPublicKey(key.Public())
    			if err != nil {
    				c.sendAlert(alertIllegalParameter)
    				return err
    			}
    		}
    
    		signed := hs.finishedHash.hashForClientCertificate(sigType, sigHash)
    		signOpts := crypto.SignerOpts(sigHash)
    		if sigType == signatureRSAPSS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * queried.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [file].
         * @return The file tree.
         */
        fun zipTree(zipPath: Any): FileTree
    
        /**
         * Creates a new [FileTree] which contains the contents of the given TAR file.
         *
         * The given tarPath path can be:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Script.java

         * queried.</p>
         *
         * @param zipPath The ZIP file. Evaluated as per {@link #file(Object)}.
         * @return the file tree. Never returns null.
         */
        FileTree zipTree(Object zipPath);
    
        /**
         * Creates a new {@code FileTree} which contains the contents of the given TAR file. The given tarPath path can be:
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/doc.json

            "copy_to": ["content_minhash_bits"]
          },
          "content_minhash": {
            "type": "text",
            "index": false
          },
          "content_minhash_bits": {
            "type": "minhash",
            "bit_string": true,
            "minhash_analyzer": "minhash_analyzer"
          },
          "content_length": {
            "type": "long"
          },
          "created": {
            "type": "date",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

            buildFile << """
                task zipTask(type: Zip) {
                    from(project.files("foo"))
                    archiveFile.set(project.file("\${buildDir}/foo.zip"))
                }
                task jarTask(type: Jar) {
                    from(zipTask)
                    archiveFile.set(project.file("\${buildDir}/foo.jar"))
                }
                taskWithInputs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

        override fun getPath(): String =
            delegate.path
    
        override fun getBuildTreePath(): String =
            delegate.buildTreePath
    
        override fun zipTree(zipPath: Any): FileTree =
            delegate.zipTree(zipPath)
    
        override fun allprojects(action: Action<in Project>) =
            delegate.allprojects(action)
    
        override fun allprojects(configureClosure: Closure<*>) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. 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)
  9. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    ass package org.gradle.wrapper; public synchronized class WrapperConfiguration { private java.net.URI distribution; private String distributionBase; private String distributionPath; private String distributionSha256Su; private String zipBase; private String zipPath; private int networkTimeout; private boolean validateDistribution; public void WrapperConfiguration(); public java.net.URI getDistribution(); public void setDistribution(java.net.URI); public String getDistributionBase(); public void ...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  10. docs/distributed/DESIGN.md

    ```go
    // hashes the key returning an integer.
    func sipHashMod(key string, cardinality int, id [16]byte) int {
            if cardinality <= 0 {
                    return -1
            }
            sip := siphash.New(id[:])
            sip.Write([]byte(key))
            return int(sip.Sum64() % uint64(cardinality))
    }
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top