Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 301 for Hashing (0.28 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

            <span class="badge-text">Incremental Builds and Build Caching with Gradle&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Learn the basics of Gradle's caching system.
    
    ****
    **In this section you will:**
    
    - Turn on the local Build Cache
    - Understand caching
    - Explore remote build caching
    ****
    
    [[part6_begin]]
    == Step 0. Before you Begin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringLocalBuildCacheServiceHandle.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.controller.service;
    
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.internal.operations.BuildCacheLocalLoadBuildOperationType;
    import org.gradle.caching.internal.operations.BuildCacheLocalStoreBuildOperationType;
    import org.gradle.caching.local.internal.LocalBuildCacheService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:21:33 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    == Status as of Gradle 8.5
    
    When isolated projects is enabled, Gradle applies two levels of caching during IDE sync:
    
    Gradle starts by applying coarse-grained caching.
    To do this, Gradle caches the result of the entire sync operation and reuses it when nothing that affects the IDE model has changed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactory.java

    import org.gradle.cache.internal.SingleDepthFilesFinder;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.caching.BuildCacheService;
    import org.gradle.caching.BuildCacheServiceFactory;
    import org.gradle.caching.local.DirectoryBuildCache;
    import org.gradle.internal.file.FileAccessTimeJournal;
    import org.gradle.internal.file.FileAccessTracker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheService.java

    import org.apache.http.protocol.HTTP;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.caching.BuildCacheEntryReader;
    import org.gradle.caching.BuildCacheEntryWriter;
    import org.gradle.caching.BuildCacheException;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.BuildCacheService;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.resource.transport.http.HttpClientHelper;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       *     accepts a cause: Users of this class typically expect for instances to have a non-null
       *     cause. At the moment, you can <i>usually</i> still preserve behavior by passing an explicit
       *     {@code null} cause. Note, however, that passing an explicit {@code null} cause prevents
       *     anyone from calling {@link #initCause} later, so it is not quite equivalent to using a
       *     constructor that omits the cause.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStepTest.groovy

    import org.gradle.internal.execution.OutputSnapshotter
    import org.gradle.internal.execution.caching.CachingDisabledReason
    import org.gradle.internal.execution.caching.CachingDisabledReasonCategory
    import org.gradle.internal.execution.caching.CachingState
    import org.gradle.internal.execution.caching.impl.DefaultBuildCacheKey
    import org.gradle.internal.execution.history.BeforeExecutionState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ExecutionError.java

       *     of this class typically expect for instances to have a non-null cause. At the moment, you
       *     can <i>usually</i> still preserve behavior by passing an explicit {@code null} cause. Note,
       *     however, that passing an explicit {@code null} cause prevents anyone from calling {@link
       *     #initCause} later, so it is not quite equivalent to using a constructor that omits the
       *     cause.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

    import org.gradle.caching.internal.origin.OriginMetadata;
    import org.gradle.internal.Try;
    import org.gradle.internal.execution.ExecutionEngine;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.caching.CachingDisabledReason;
    import org.gradle.internal.execution.caching.CachingDisabledReasonCategory;
    import org.gradle.internal.execution.caching.CachingState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactoryTest.groovy

     */
    
    package org.gradle.caching.local.internal
    
    import org.gradle.api.internal.cache.CacheConfigurationsInternal
    import org.gradle.api.internal.file.FileResolver
    import org.gradle.api.provider.Provider
    import org.gradle.cache.CacheBuilder
    import org.gradle.cache.UnscopedCacheBuilderFactory
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    import org.gradle.caching.BuildCacheServiceFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top