Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 283 for cachez (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

     */
    
    package org.gradle.internal.classpath;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.api.NonNullApi;
    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.GlobalCacheLocations;
    import org.gradle.cache.PersistentCache;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.internal.Either;
    import org.gradle.internal.classpath.transforms.ClassTransform;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            when:
            fails 'publish'
    
            then:
            if (GradleContextualExecuter.isConfigCache()) {
                failure.assertHasDescription("Configuration cache state could not be cached:")
            } else {
                failure.assertHasDescription("Execution failed for task ':publishMavenPublicationToIncompatible_repo_nameRepository'.")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.cache.internal
    
    import org.gradle.cache.FileLock
    import org.gradle.cache.FileLockManager
    import org.gradle.cache.FileLockReleasedSignal
    import org.gradle.cache.internal.filelock.DefaultLockOptions
    import org.gradle.cache.internal.locklistener.DefaultFileLockContentionHandler
    import org.gradle.cache.internal.locklistener.FileLockContentionHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeLifecycleControllerFactory.kt

            // Some temporary wiring: the cache implementation is still scoped to the root build rather than the build tree
            cache.attachRootBuild(targetBuild.gradle.services.get())
    
            cache.initializeCacheEntry()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirConstructorSymbol.kt

    ) : KaConstructorSymbol(), KaFirSymbol<FirConstructorSymbol> {
        override val psi: PsiElement? by cached { firSymbol.findPsi() }
    
        override val returnType: KaType get() = withValidityAssertion { firSymbol.returnType(builder) }
    
        override val valueParameters: List<KaValueParameterSymbol> by cached { firSymbol.createKtValueParameters(builder) }
    
        override val hasStableParameterNames: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildTreeWorkController.kt

                val result = cache.loadOrScheduleRequestedTasks(
                    graph = graph,
                    graphBuilder = scheduleTaskSelectorPostProcessing
                ) { workPreparer.scheduleRequestedTasks(graph, taskSelector) }
                if (!result.wasLoadedFromCache && !result.entryDiscarded && startParameter.loadAfterStore) {
                    // Load the work graph from cache instead
                    null
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirReceiverParameterSymbol.kt

            }
        }
    
        override val type: KaType by cached {
            firSymbol.receiverType(analysisSession.firSymbolBuilder)
                ?: errorWithAttachment("${firSymbol::class} doesn't have an extension receiver") {
                    withFirEntry("callable", firSymbol.fir)
                }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirClassErrorType.kt

        override val errorMessage: String get() = withValidityAssertion { coneDiagnostic.reason }
    
        override val annotations: KaAnnotationList by cached {
            KaFirAnnotationListForType.create(coneType, builder)
        }
    
        override val candidateSymbols: Collection<KaClassLikeSymbol> by cached {
            val symbols = coneDiagnostic.getCandidateSymbols().filterIsInstance<FirClassLikeSymbol<*>>()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                    cacheAction == STORE && hasTooManyProblems -> log("Configuration cache entry discarded with too many problems ({}).", problemCountString)
                    cacheAction == STORE && !hasProblems -> log("Configuration cache entry stored.")
                    cacheAction == STORE -> log("Configuration cache entry stored with {}.", problemCountString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. .github/workflows/tests.yml

          uses: actions/setup-go@v4
          with:
            go-version: ${{ matrix.go }}
    
        - name: Check out code into the Go module directory
          uses: actions/checkout@v4
    
        - name: go mod package cache
          uses: actions/cache@v4
          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top