Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 177 for wyhash (0.21 sec)

  1. guava/src/com/google/common/io/Files.java

      }
    
      /**
       * Computes the hash code of the {@code file} using {@code hashFunction}.
       *
       * @param file the file to read
       * @param hashFunction the hash function to use to hash the data
       * @return the {@link HashCode} of all of the bytes in the file
       * @throws IOException if an I/O error occurs
       * @since 12.0
       * @deprecated Prefer {@code asByteSource(file).hash(hashFunction)}.
       */
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilter.java

     */
    
    package com.google.common.hash;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.Beta;
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.base.Objects;
    import com.google.common.base.Predicate;
    import com.google.common.hash.BloomFilterStrategies.LockFreeBitArray;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java

      }
    
      /** Returns an unspecified hash code for the contents of this immutable array. */
      @Override
      public int hashCode() {
        int hash = 1;
        for (int i = start; i < end; i++) {
          hash *= 31;
          hash += Doubles.hashCode(array[i]);
        }
        return hash;
      }
    
      /**
       * Returns a string representation of this array in the same form as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

          }
        }
        return true;
      }
    
      /** Returns an unspecified hash code for the contents of this immutable array. */
      @Override
      public int hashCode() {
        int hash = 1;
        for (int i = start; i < end; i++) {
          hash *= 31;
          hash += Ints.hashCode(array[i]);
        }
        return hash;
      }
    
      /**
       * Returns a string representation of this array in the same form as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

    import org.gradle.internal.fingerprint.FileNormalizer;
    import org.gradle.internal.fingerprint.LineEndingSensitivity;
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.instantiation.InstanceFactory;
    import org.gradle.internal.instantiation.InstantiationScheme;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/cache.go

    // readDiskStatByHash is a fallback for readDiskStat for the case
    // where rev is a commit hash instead of a proper semantic version.
    // In that case, we look for a cached pseudo-version that matches
    // the commit hash. If we find one, we use it.
    // This matters most for converting legacy package management
    // configs, when we are often looking up commits by full hash.
    // Without this check we'd be doing network I/O to the remote repo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

                return Objects.equals(module, that.module) && Objects.equals(details, that.details);
            }
    
            @Override
            public int hashCode() {
                return Objects.hash(module, details);
            }
        }
    
        private static class ProjectDependencyKey {
            private final Path identityPath;
            private final ModuleDependencyDetails details;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. cmd/object-api-utils_test.go

    		expectedErr    string
    	}{
    		// Wrong MD5 hash string, returns md5um of hash
    		{[]CompletePart{{ETag: "wrong-md5-hash-string"}}, "0deb8cb07527b4b2669c861cb9653607-1", ""},
    
    		// Single CompletePart with valid MD5 hash string.
    		{[]CompletePart{{ETag: "cf1f738a5924e645913c984e0fe3d708"}}, "10dc1617fbcf0bd0858048cb96e6bd77-1", ""},
    
    		// Multiple CompletePart with valid MD5 hash string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

    import org.gradle.internal.file.PathToFileResolver;
    import org.gradle.internal.file.impl.DefaultDeleter;
    import org.gradle.internal.fingerprint.impl.DefaultFileCollectionSnapshotter;
    import org.gradle.internal.hash.DefaultFileHasher;
    import org.gradle.internal.hash.DefaultStreamHasher;
    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    import org.gradle.internal.resource.local.FileResourceConnector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/SnapshotSerializer.java

    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.attributes.Attribute;
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.serialize.AbstractSerializer;
    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.Encoder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top