Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,484 for Hashing (0.48 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

    import org.gradle.internal.component.model.ComponentOverrideMetadata
    import org.gradle.internal.component.model.ImmutableModuleSources
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.resolve.result.BuildableArtifactFileResolveResult
    import org.gradle.internal.resolve.result.DefaultBuildableArtifactSetResolveResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/crypto/crypto.go

    	// specific values. See the documentation in each package for details.
    	//
    	// Note that when a signature of a hash of a larger message is needed,
    	// the caller is responsible for hashing the larger message and passing
    	// the hash (as digest) and the hash function (as opts) to Sign.
    	Sign(rand io.Reader, digest []byte, opts SignerOpts) (signature []byte, err error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss.go

    		return ErrVerification
    	}
    	return nil
    }
    
    // signPSSWithSalt calculates the signature of hashed using PSS with specified salt.
    // Note that hashed must be the result of hashing the input message using the
    // given hash function. salt is a random sequence of bytes whose length will be
    // later used to verify the signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

        enum SupportedHash {
            SHA1, SHA256, SHA512, MD5
        }
    
        enum EtagStrategy {
            NONE({ null }),
            RAW_SHA1_HEX({ Hashing.sha1().hashBytes(it as byte[]).toString() }),
            NEXUS_ENCODED_SHA1({ "{SHA1{" + Hashing.sha1().hashBytes(it as byte[]) + "}}" })
    
            private final Closure generator
    
            EtagStrategy(Closure generator) {
                this.generator = generator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

    import com.google.common.annotations.VisibleForTesting;
    
    /**
     * Implementation of FarmHash Fingerprint64, an open-source fingerprinting algorithm for strings.
     *
     * <p>Its speed is comparable to CityHash64, and its quality of hashing is at least as good.
     *
     * <p>Note to maintainers: This implementation relies on signed arithmetic being bit-wise equivalent
     * to unsigned arithmetic in all cases except:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/FarmHashFingerprint64.java

    import com.google.common.annotations.VisibleForTesting;
    
    /**
     * Implementation of FarmHash Fingerprint64, an open-source fingerprinting algorithm for strings.
     *
     * <p>Its speed is comparable to CityHash64, and its quality of hashing is at least as good.
     *
     * <p>Note to maintainers: This implementation relies on signed arithmetic being bit-wise equivalent
     * to unsigned arithmetic in all cases except:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. .teamcity/test-buckets.json

    					"testing-jvm",
    					"worker-main",
    					"files",
    					"stdlib-java-extensions",
    					"build-cache-packaging",
    					"build-operations",
    					"precondition-tester",
    					"tooling-api-builders",
    					"hashing",
    					"base-services-groovy",
    					"kotlin-dsl-provider-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"plugin-use",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/value.h

    };
    
    /// Hashing infrastructure for Tuple.
    inline size_t TaggedValueHash<Tuple>::operator()(const Tuple& t) const {
      std::size_t hash = 0;
      for (auto& i : t) {
        hash ^= TaggedValueHash<TaggedValue>()(i);
      }
      return hash;
    }
    
    /// @brief The TaggedValueHashVisitor class for doing type-based hashing
    /// of TaggedValues.
    class TaggedValueHashVisitor {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

        api(project(":execution"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":file-watching"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":internal-instrumentation-api"))
        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
        api(project(":model-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":enterprise-logging"))
        api(project(":execution"))
        api(project(":file-collections"))
        api(project(":file-watching"))
        api(project(":files"))
        api(project(":hashing"))
        api(projects.instrumentationAgentServices)
        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top