Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,484 for Hashing (0.36 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/CacheInstrumentationDataBuildService.java

    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    import org.gradle.internal.file.FileType;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.lazy.Lazy;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.io.File;
    import java.util.Map;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

          this.key = key;
          this.firstEntry = this;
          this.lastEntry = this;
          // Round expected values up to a power of 2 to get the table size.
          int tableSize = Hashing.closedTableSize(expectedValues, VALUE_SET_LOAD_FACTOR);
    
          @SuppressWarnings({"rawtypes", "unchecked"})
          @Nullable
          ValueEntry<K, V>[] hashTable = new @Nullable ValueEntry[tableSize];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/LinkedHashMultimap.java

          this.key = key;
          this.firstEntry = this;
          this.lastEntry = this;
          // Round expected values up to a power of 2 to get the table size.
          int tableSize = Hashing.closedTableSize(expectedValues, VALUE_SET_LOAD_FACTOR);
    
          @SuppressWarnings({"rawtypes", "unchecked"})
          @Nullable
          ValueEntry<K, V>[] hashTable = new @Nullable ValueEntry[tableSize];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/build.gradle.kts

        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":files"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/runtime/hash64.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Hashing algorithm inspired by
    // wyhash: https://github.com/wangyi-fudan/wyhash
    
    //go:build amd64 || arm64 || loong64 || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x || wasm
    
    package runtime
    
    import (
    	"runtime/internal/math"
    	"unsafe"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 17:39:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Fingerprint2011.java

    import static java.lang.Long.rotateRight;
    
    import com.google.common.annotations.VisibleForTesting;
    
    /**
     * Implementation of Geoff Pike's fingerprint2011 hash function. See {@link Hashing#fingerprint2011}
     * for information on the behaviour of the algorithm.
     *
     * <p>On Intel Core2 2.66, on 1000 bytes, fingerprint2011 takes 0.9 microseconds compared to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 28 17:50:25 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

     */
    
    package org.gradle.scala.compile
    
    import org.gradle.integtests.fixtures.MultiVersionIntegrationSpec
    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.file.ClassFile
    import org.gradle.util.internal.VersionNumber
    import org.junit.Assume
    import org.junit.Rule
    
    import static org.gradle.scala.ScalaCompilationFixture.scalaDependency
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/FilesTest.java

        String init = "d41d8cd98f00b204e9800998ecf8427e";
        assertEquals(init, Hashing.md5().newHasher().hash().toString());
    
        String asciiHash = "e5df5a39f2b8cb71b24e1d8038f93131";
        assertEquals(asciiHash, Files.hash(asciiFile, Hashing.md5()).toString());
    
        String i18nHash = "7fa826962ce2079c8334cd4ebf33aea4";
        assertEquals(i18nHash, Files.hash(i18nFile, Hashing.md5()).toString());
      }
    
      public void testMap() throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.ImmutableSortedMap;
    import com.google.common.collect.Maps;
    import org.gradle.api.NonNullApi;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.internal.execution.caching.CachingState;
    import org.gradle.internal.execution.history.BeforeExecutionState;
    import org.gradle.internal.execution.history.ExecutionInputState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testFixturesImplementation(project(":internal-testing"))
        testFixturesImplementation(project(":internal-integ-testing"))
    
        testFixturesImplementation(testFixtures(project(":hashing")))
    
        testFixturesImplementation(libs.kotlinCompilerEmbeddable)
    
        testFixturesImplementation(libs.junit)
        testFixturesImplementation(libs.mockitoKotlin)
        testFixturesImplementation(libs.jacksonKotlin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top