Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 606 for Hashing (0.16 sec)

  1. platforms/core-runtime/base-services/build.gradle.kts

    }
    
    moduleIdentity.createBuildReceipt()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.fileTemp)
        api(projects.serviceProvider)
        api(project(":hashing"))
        api(project(":build-operations"))
        api(libs.inject)
        api(libs.jsr305)
        api(libs.guava)
    
        implementation(projects.io)
        implementation(projects.time)
    
        implementation(libs.asm)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/DefaultToolingModelParameterCarrierFactory.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.models
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.snapshot.ValueSnapshotter
    import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter
    import org.gradle.tooling.internal.consumer.connection.ToolingParameterProxy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestBuildCache.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import org.gradle.caching.local.internal.BuildCacheTempFileStore
    import org.gradle.caching.local.internal.DirectoryBuildCacheServiceFactory
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.file.TestFile
    
    class TestBuildCache {
        private final TestFile cacheDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

                        assert Hashing.sha1().hashFile(artifact.file) == file.sha1
                        if (checkExtraChecksums && (!artifact.file.name in missingExtra)) {
                            assert Hashing.sha256().hashFile(artifact.file) == file.sha256
                            assert Hashing.sha512().hashFile(artifact.file) == file.sha512
                        }
                        assert Hashing.md5(). hashFile(artifact.file) == file.md5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/oauth2-jwt.md

    ## Password hashing
    
    "Hashing" means converting some content (a password in this case) into a sequence of bytes (just a string) that looks like gibberish.
    
    Whenever you pass exactly the same content (exactly the same password) you get exactly the same gibberish.
    
    But you cannot convert from the gibberish back to the password.
    
    ### Why use password hashing
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. platforms/software/resources/build.gradle.kts

            "OperatorPrecedence", // 9 occurrences
            "UndefinedEquals", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":build-operations"))
        api(project(":hashing"))
        api(project(":base-services"))
        api(project(":messaging"))
        api(project(":native"))
    
        api(libs.jsr305)
    
        implementation(project(":files"))
        implementation(project(":logging"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 970 bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.HttpModule
    import org.gradle.test.fixtures.ModuleArtifact
    import org.gradle.test.fixtures.ResettableExpectations
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/UrlValidator.groovy

    import org.gradle.testing.internal.util.RetryUtil
    import org.gradle.util.internal.TextUtil
    import org.junit.Assert
    
    import static org.gradle.internal.hash.Hashing.hashFile
    import static org.gradle.internal.hash.Hashing.hashStream
    
    class UrlValidator {
    
        static void available(String theUrl, String application = "service", int timeout = 30) {
            URL url = new URL(theUrl)
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/UrlRepositoryDescriptor.java

    import org.gradle.api.internal.artifacts.repositories.resolver.ResourcePattern;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.net.URI;
    import java.util.List;
    import java.util.function.Consumer;
    
    public abstract class UrlRepositoryDescriptor extends RepositoryDescriptor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-example-client/build.gradle.kts

        implementation(projects.buildOperations)
        implementation(projects.concurrent)
        implementation(projects.fileTemp)
        implementation(projects.files)
        implementation(projects.functional)
        implementation(projects.hashing)
        implementation(projects.stdlibJavaExtensions)
        implementation(projects.persistentCache)
        implementation(projects.snapshots)
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top