Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,500 for Hashing (0.31 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ZipEntryContext.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.api.internal.file.archive.ZipEntry;
    
    import java.util.function.Supplier;
    
    public interface ZipEntryContext {
        ZipEntry getEntry();
    
        String getFullName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 932 bytes
    - Viewed (0)
  2. 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)
  3. internal/event/target/kafka_scram_client_contrib.go

    // KafkaSHA256 is a function that returns a crypto/sha256 hasher and should be used
    // to create Client objects configured for SHA-256 hashing.
    var KafkaSHA256 scram.HashGeneratorFcn = sha256.New
    
    // KafkaSHA512 is a function that returns a crypto/sha512 hasher and should be used
    // to create Client objects configured for SHA-512 hashing.
    var KafkaSHA512 scram.HashGeneratorFcn = sha512.New
    
    // XDGSCRAMClient implements the client-side of an authentication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 09 04:04:01 UTC 2023
    - 3.2K bytes
    - Viewed (1)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/normalization-java/build.gradle.kts

    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 2 occurrences
            "NonApiType", // 1 occurrences
            "ProtectedMembersInFinalClass", // 1 occurrences
        )
    }
    
    dependencies {
        api(project(":hashing"))
        api(project(":files"))
        api(project(":snapshots"))
    
        api(libs.jsr305)
        api(libs.asm)
        api(libs.guava)
    
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 824 bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-packaging/build.gradle.kts

        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Package build cache results"
    
    dependencies {
    
        api(project(":build-cache-base"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":snapshots"))
    
        api(libs.guava)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(libs.commonsCompress)
        implementation(libs.commonsIo)
        implementation(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 864 bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/tasks/GenerateKotlinExtensionsForGradleApi.kt

    import org.gradle.internal.classanalysis.AsmConstants.ASM_LEVEL
    import org.gradle.internal.classloader.ClassLoaderUtils
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.internal.hash.Hashing
    import org.gradle.kotlin.dsl.internal.sharedruntime.codegen.kotlinDslPackagePath
    import org.gradle.plugin.use.PluginDependenciesSpec
    import org.gradle.plugin.use.PluginDependencySpec
    import org.objectweb.asm.Type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 15:02:26 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top