Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,484 for Hashing (1.81 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

    import org.gradle.internal.fingerprint.DirectorySensitivity;
    import org.gradle.internal.fingerprint.FileSystemLocationFingerprint;
    import org.gradle.internal.fingerprint.FingerprintHashingStrategy;
    import org.gradle.internal.fingerprint.hashing.FileSystemLocationSnapshotHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // license that can be found in the LICENSE file.
    
    package sha3
    
    // This file provides functions for creating instances of the SHA-3
    // and SHAKE hash functions, as well as utility functions for hashing
    // bytes.
    
    import (
    	"hash"
    )
    
    // New224 creates a new SHA3-224 hash.
    // Its generic security strength is 224 bits against preimage attacks,
    // and 112 bits against collision attacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/hns.go

    	// Compute hash from backends (endpoint IDs)
    	hash, err := hashEndpoints(endpoints)
    	if err != nil {
    		klog.V(2).ErrorS(err, "Error hashing endpoints", "endpoints", endpoints)
    		return loadBalancerIdentifier{}, err
    	}
    	if len(vip) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/build.gradle.kts

        api(project(":build-operations"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":language-jvm"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":problems-api"))
        api(project(":process-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsConcurrencyIntegrationTest.groovy

                    doLast {
                        def files = configurations.gradleImplDeps.resolve()
                        file('deps.txt').text = files.collect {
                            org.gradle.internal.hash.Hashing.md5().hashFile(it).toString()
                        }.join(',')
                    }
                }
            """
        }
    
        static String gradleApiAndTestKitClassLoadingTestClass() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/RegularImmutableSet.java

      }
    
      @Override
      public boolean contains(@CheckForNull Object target) {
        @Nullable Object[] table = this.table;
        if (target == null || table.length == 0) {
          return false;
        }
        for (int i = Hashing.smearedHash(target); ; i++) {
          i &= mask;
          Object candidate = table[i];
          if (candidate == null) {
            return false;
          } else if (candidate.equals(target)) {
            return true;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

    import org.gradle.internal.fingerprint.DirectorySensitivity
    import org.gradle.internal.fingerprint.LineEndingSensitivity
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hasher
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.properties.InputBehavior.NON_INCREMENTAL
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.internal.snapshot.ValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RegularImmutableSet.java

      }
    
      @Override
      public boolean contains(@CheckForNull Object target) {
        @Nullable Object[] table = this.table;
        if (target == null || table.length == 0) {
          return false;
        }
        for (int i = Hashing.smearedHash(target); ; i++) {
          i &= mask;
          Object candidate = table[i];
          if (candidate == null) {
            return false;
          } else if (candidate.equals(target)) {
            return true;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/build.gradle.kts

        implementation(projects.flowServices)
        implementation(projects.functional)
        implementation(projects.graphSerialization)
        implementation(projects.guavaSerializationCodecs)
        implementation(projects.hashing)
        implementation(projects.inputTracking)
        implementation(projects.instrumentationAgentServices)
        implementation(projects.logging)
        implementation(projects.persistentCache)
        implementation(projects.problemsApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h

    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_OP_INTERFACES_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_OP_INTERFACES_H_
    
    #include <string>
    
    #include "llvm/ADT/DenseMapInfo.h"
    #include "llvm/ADT/Hashing.h"
    #include "llvm/ADT/StringRef.h"
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/OpImplementation.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 03 19:26:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top