Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 537 for Hashing (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    For your build to play well with task output caching it must work well with the <<incremental_build#incremental_build,incremental build>> feature.
    For example, when running your build twice in a row all tasks with outputs should be `UP-TO-DATE`.
    You cannot expect faster builds or correct builds when enabling task output caching when this prerequisite is not met.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

    import org.gradle.caching.internal.operations.BuildCacheLocalLoadBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheLocalStoreBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheRemoteDisabledDueToFailureProgressDetails
    import org.gradle.caching.internal.operations.BuildCacheRemoteLoadBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheRemoteStoreBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_2x.md

        closing the input stream and output stream of a socket is not sufficient.
     *  Fix: Buffer outgoing HTTP/2 frames to limit how many outgoing frames are
        created.
     *  Fix: Avoid crashing when cache writing fails due to a full disk.
     *  Fix: Improve caching of private responses.
     *  Fix: Update cache-by-default response codes.
     *  Fix: Reused `Request.Builder` instances no longer hold stale URL fields.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    id("maven-publish")
                }
    
                group = 'group'
                version = '1.0'
    
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
                }
    
                dependencies {
                    api('org.test:non-transitive:1.0') { transitive = false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            then:
            executedAndNotSkipped(":unspecified")
            assertCachingDisabledFor NOT_ENABLED_FOR_TASK, "Caching has not been enabled for the task"
    
            when:
            withBuildCache().run "unspecified"
            then:
            skipped(":unspecified")
            assertCachingDisabledFor NOT_ENABLED_FOR_TASK, "Caching has not been enabled for the task"
        }
    
        def "cacheability for a failing cacheable task is null"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.internal.CacheableEntity;
    import org.gradle.caching.internal.controller.BuildCacheController;
    import org.gradle.caching.internal.controller.service.BuildCacheLoadResult;
    import org.gradle.caching.internal.origin.OriginMetadata;
    import org.gradle.internal.Try;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

     */
    
    package org.gradle.caching.http.internal
    
    import org.apache.http.HttpHeaders
    import org.apache.http.HttpStatus
    import org.gradle.api.UncheckedIOException
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.caching.BuildCacheEntryWriter
    import org.gradle.caching.BuildCacheException
    import org.gradle.caching.BuildCacheServiceFactory
    import org.gradle.caching.http.HttpBuildCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    [[sec:controlling-dynamic-version-caching]]
    == Controlling dynamic version caching
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    You've seen quite a bit about cacheable tasks, which implies there are non-cacheable ones, too. If caching task outputs is as awesome as it sounds, why not cache every task?
    
    There are tasks that are definitely worth caching: tasks that do complex, repeatable processing and produce moderate amounts of output. Compilation tasks are usually ideal candidates for caching.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/HashTestUtils.java

            int key1 = rand.nextInt();
            // flip input bit for key2
            int key2 = key1 ^ (1 << i);
            // get hashes
            int hash1 = function.hashInt(key1).asInt();
            int hash2 = function.hashInt(key2).asInt();
            // test whether the hash values have same output bits
            same |= ~(hash1 ^ hash2);
            // test whether the hash values have different output bits
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
Back to top