Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for BuildCache (0.13 sec)

  1. src/cmd/go/internal/work/buildid.go

    		return ""
    	}
    	return buildid.HashToString(sum)
    }
    
    var (
    	counterCacheHit  = telemetry.NewCounter("go/buildcache/hit")
    	counterCacheMiss = telemetry.NewCounter("go/buildcache/miss")
    
    	onceIncStdlibRecompiled sync.Once
    	stdlibRecompiled        = telemetry.NewCounter("go/buildcache/stdlib-recompiled")
    )
    
    // useCache tries to satisfy the action a, which has action ID actionHash,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. settings.gradle.kts

    FeaturePreviews.Feature.values().forEach { feature ->
        if (feature.isActive) {
            enableFeaturePreview(feature.name)
        }
    }
    
    fun remoteBuildCacheEnabled(settings: Settings) = settings.buildCache.remote?.isEnabled == true
    
    fun getBuildJavaHome() = System.getProperty("java.home")
    
    gradle.settingsEvaluated {
        if ("true" == System.getProperty("org.gradle.ignoreBuildJavaVersionCheck")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         *
         * @since 3.5
         */
        BuildCacheConfiguration getBuildCache();
    
        /**
         * Configures build cache.
         *
         * @since 3.5
         */
        void buildCache(Action<? super BuildCacheConfiguration> action);
    
        /**
         * Configures plugin management.
         *
         * @since 3.5
         */
        @Configuring
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ```kotlin
    buildCache {
        local {
            // Remove this line
            removeUnusedEntriesAfterDays = 30
        }
    }
    ```
    
    add a file like this in `~/.gradle/init.d`:
    ```kotlin
    beforeSettings {
        caches {
            buildCache.setRemoveUnusedEntriesAfterDays(30)
        }
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

                def buildCachePath = TextUtil.normaliseFileSeparators(buildCacheDir.absolutePath)
    
                settingsFile = root.file('settings.gradle') << """
                    buildCache {
                        local {
                            directory = file('${buildCachePath}')
                        }
                    }
                """
    
                buildFile = root.file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.caching.configuration.BuildCache.isEnabled()> does not have raw return type assignable to org.gradle.api.provider.Property in (BuildCache.java:0)
    Method <org.gradle.caching.configuration.BuildCache.isPush()> does not have raw return type assignable to org.gradle.api.provider.Property in (BuildCache.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top