Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 883 for Hashing (0.13 sec)

  1. 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)
  2. docs/de/docs/tutorial/security/simple-oauth2.md

    Sie sollten niemals Klartext-Passwörter speichern, daher verwenden wir ein (gefaktes) Passwort-Hashing-System.
    
    Wenn die Passwörter nicht übereinstimmen, geben wir denselben Fehler zurück.
    
    #### Passwort-HashingHashing“ bedeutet: Konvertieren eines Inhalts (in diesem Fall eines Passworts) in eine Folge von Bytes (ein schlichter String), die wie Kauderwelsch aussieht.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typestring.go

    		}
    		w.typ(t.elem)
    		if parens {
    			w.byte(')')
    		}
    
    	case *Named:
    		// If hashing, write a unique prefix for t to represent its identity, since
    		// named type identity is pointer identity.
    		if w.ctxt != nil {
    			w.string(strconv.Itoa(w.ctxt.getID(t)))
    		}
    		w.typeName(t.obj) // when hashing written for readability of the hash only
    		if t.inst != nil {
    			// instantiated type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-kotlin-extensions/build.gradle.kts

    }
    
    description = "Kotlin extensions to make working with Gradle :core and family more convenient"
    
    dependencies {
        api(projects.core)
        api(projects.coreApi)
        api(projects.files)
        api(projects.hashing)
    
        api(libs.kotlinStdlib)
    
        implementation(projects.baseServices)
        implementation(projects.messaging)
        implementation(projects.resources)
        implementation(projects.serviceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 579 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.cache.CachingIntegrationFixture
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.file.TestFile
    
    import java.nio.file.Files
    
    class CacheResolveIntegrationTest extends AbstractHttpDependencyResolutionTest implements CachingIntegrationFixture {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKeyTest.kt

    import org.gradle.internal.buildoption.Option
    import org.gradle.internal.buildtree.BuildModelParameters
    import org.gradle.internal.buildtree.RunTasksRequirements
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.util.internal.EncryptionAlgorithm
    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.CoreMatchers.not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/go/types/typestring.go

    		}
    		w.typ(t.elem)
    		if parens {
    			w.byte(')')
    		}
    
    	case *Named:
    		// If hashing, write a unique prefix for t to represent its identity, since
    		// named type identity is pointer identity.
    		if w.ctxt != nil {
    			w.string(strconv.Itoa(w.ctxt.getID(t)))
    		}
    		w.typeName(t.obj) // when hashing written for readability of the hash only
    		if t.inst != nil {
    			// instantiated type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/simple-oauth2.md

    Let's put that data in the Pydantic `UserInDB` model first.
    
    You should never save plaintext passwords, so, we'll use the (fake) password hashing system.
    
    If the passwords don't match, we return the same error.
    
    #### Password hashing
    
    "Hashing" means: converting some content (a password in this case) into a sequence of bytes (just a string) that looks like gibberish.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-local/build.gradle.kts

    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":build-cache"))
        api(project(":build-cache-spi"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":persistent-cache"))
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
        testImplementation(project(":model-core"))
        testImplementation(project(":file-collections"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 849 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutorTest.groovy

    import org.gradle.internal.action.DefaultConfigurableRule
    import org.gradle.internal.action.DefaultConfigurableRules
    import org.gradle.internal.action.InstantiatingAction
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.reflect.Instantiator
    import org.gradle.internal.serialize.Serializer
    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.internal.snapshot.ValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top