Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 197 for prebuilt (0.23 sec)

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

    When you are switching branches back and forth, the local results get rebuilt over and over again, even if you are building something that has already been built before.
    The build cache remembers the earlier build results, and greatly reduces the need to rebuild things when they have already been built locally.
    This can also extend to rebuilding different commits, like when running `git bisect`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccess.java

            }
            FileLock fileLock = lockManager.lock(lockTarget, lockOptions, cacheDisplayName);
            try {
                boolean rebuild = initializationAction.requiresInitialization(fileLock);
                if (rebuild) {
                    Exception latestException = null;
                    for (int tries = 0; rebuild && tries < 3; tries++) {
                        fileLock.close();
                        fileLock = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectProviderExtensions.kt

    package org.gradle.kotlin.dsl
    
    import org.gradle.api.NamedDomainObjectProvider
    
    
    /**
     * Allows a [NamedDomainObjectProvider] to be configured via invocation syntax.
     *
     * ```kotlin
     * val rebuild by tasks.registering
     * rebuild { // rebuild.configure {
     *   dependsOn("clean")
     * }
     * ```
     */
    operator fun <T> NamedDomainObjectProvider<T>.invoke(action: T.() -> Unit) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1009 bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IsolatingFilerTest.groovy

            new IsolatingProcessingStrategy(result)
        }
    
        def "does a full rebuild when no originating elements are given for a type"() {
            when:
            filer.createSourceFile("Foo")
    
            then:
            result.fullRebuildCause == "the generated type 'Foo' must have exactly one originating element, but had 0"
        }
    
        def "does a full rebuild when no originating elements are given for a resource"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    	// DeletedClusters contains list of all subset clusters for the deleted DR or updated DR.
    	// When clusters are rebuilt, we rebuild the subset clusters as well. So, we know what
    	// subset clusters are really needed. So if deleted cluster is not rebuilt, then it is really deleted.
    	builtClusters := sets.New[string]()
    	for _, c := range clusters {
    		builtClusters.Insert(c.Name)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. src/run.bat

    L19:set GOBUILDFAIL=0
    L20:
    L21:set GOENV=off
    L22:..\bin\go tool dist env > env.bat
    L23:if errorlevel 1 goto fail
    L24:call .\env.bat
    L25:del env.bat
    L26:
    L27:set GOPATH=c:\nonexist-gopath
    L28:
    L29:if x%1==x--no-rebuild goto norebuild
    L30:..\bin\go tool dist test --rebuild
    L31:if errorlevel 1 goto fail
    L32:goto end
    L33:
    L34::norebuild
    L35:..\bin\go tool dist test
    L36:if errorlevel 1 goto fail
    L37:goto end
    L38:
    L39::fail
    L40:set GOBUILDFAIL=1
    L41:
    L42::end
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 859 bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            }
        }
    
        public boolean isOpen() {
            return store.isOpen();
        }
    
        private void rebuild() {
            LOGGER.warn("{} is corrupt. Discarding.", this);
            try {
                clear();
            } catch (Exception e) {
                LOGGER.warn("{} couldn't be rebuilt. Closing.", this);
                close();
            }
        }
    
        public void verify() {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

                }
             """
    
            outputs.snapshot { succeeds("compileDebugSwift") }
    
            expect:
            // rebuild for Swift4
            succeeds("compileDebugSwift", "-Pswift4")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
    
            and:
            // rebuild for Swift3
            succeeds("compileDebugSwift")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedExclusiveModeCrossProcessCacheAccess.java

            }
            final FileLock fileLock = lockManager.lock(lockTarget, lockOptions, cacheDisplayName, "", unused -> {});
            try {
                boolean rebuild = initializationAction.requiresInitialization(fileLock);
                if (rebuild) {
                    fileLock.writeFile(() -> initializationAction.initialize(fileLock));
                }
                onOpenAction.accept(fileLock);
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeContinuousBuildIntegrationTest.groovy

    class CompositeContinuousBuildIntegrationTest extends AbstractContinuousIntegrationTest {
        def setup() {
            buildTestFixture.withBuildInSubDir()
        }
    
        def "will rebuild on input change for included build task dependency"() {
            def outputFile = file("included/build/output.txt")
            def inputFile = file("included/inputs/input.txt")
            inputFile.text = "first"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top