Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 197 for prebuilt (0.18 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

     * individual object's .swiftdeps file to build a dependency graph between changed and unchanged files.
     *
     * The incremental compiler will rebuild everything when:
     * - A source file is removed
     * - A different version of swiftc is used
     * - Different compiler arguments are used
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_cache_trimpath.txt

    [short] skip
    env GO111MODULE=on
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    cd $WORK
    go build -o a.out
    
    # Varying -trimpath should cause a rebuild.
    go build -x -o a.out -trimpath
    stderr '(compile|gccgo)( |\.exe)'
    stderr 'link( |\.exe)'
    
    # Two distinct versions of the same module with identical content should
    # still be cached separately.
    # Verifies golang.org/issue/35412.
    go get example.com/stack@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 865 bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    // the same binary: if the action ID for main.a's inputs matches and then
    // the action ID for the link step matches when assuming the given main.a
    // content ID, then the binary as a whole is up-to-date and need not be rebuilt.
    //
    // This is all a bit complex and may be simplified once we can rely on the
    // main cache, but at least at the start we will be using the content-based
    // staleness determination without a cache beyond the usual installed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/runtime/debuglog_test.go

    import (
    	"fmt"
    	"internal/testenv"
    	"regexp"
    	"runtime"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    )
    
    func skipDebugLog(t *testing.T) {
    	if !runtime.DlogEnabled {
    		t.Skip("debug log disabled (rebuild with -tags debuglog)")
    	}
    }
    
    func dlogCanonicalize(x string) string {
    	begin := regexp.MustCompile(`(?m)^>> begin log \d+ <<\n`)
    	x = begin.ReplaceAllString(x, "")
    	prefix := regexp.MustCompile(`(?m)^\[[^]]+\]`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/dist/README

    The process to install Go 1.x, for x ≥ 22, is:
    
    1. Build cmd/dist with Go 1.20.6.
    2. Using dist, build Go 1.x compiler toolchain with Go 1.20.6.
    3. Using dist, rebuild Go 1.x compiler toolchain with itself.
    4. Using dist, build Go 1.x cmd/go (as go_bootstrap) with Go 1.x compiler toolchain.
    5. Using go_bootstrap, build the remaining Go 1.x standard library and commands.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/IncrementalGroovyProjectBuildIntegrationTest.groovy

     */
    package org.gradle.integtests
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class IncrementalGroovyProjectBuildIntegrationTest extends AbstractIntegrationSpec {
    
        def "does not rebuild Groovydoc if source has not changed"() {
            def indexFile = file("build/docs/groovydoc/index.html");
            file("src/main/groovy/BuildClass.java") << 'public class BuildClass { }'
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        while (taskFaker.isIdle()) {
          set("a", "a", "a")
          set("b", "b", "b")
        }
    
        // Cause the rebuild action to fail.
        filesystem.setFaultyRename(cacheDir / DiskLruCache.JOURNAL_FILE_BACKUP, true)
        taskFaker.runNextTask()
    
        // The rebuild is retried on cache hits and on cache edits.
        val snapshot = cache["b"]!!
        snapshot.close()
        assertThat(cache.edit("d")).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

        TestFile artifactsCache
        Set<TestFile> visitedBaseDirs
    
        MavenHttpRepository repo
    
        @Before
        public void setUp() {
            // Use own home dir so we don't blast the shared one when we run with -C rebuild
            executer.requireOwnGradleUserHomeDir()
    
            String version = GradleVersion.current().version
            projectDir = file("project")
            projectDir.mkdirs()
            userHomeDir = executer.gradleUserHomeDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/InputBehavior.java

    /**
     * Describes the behavior of an input property.
     */
    public enum InputBehavior {
        /**
         * Non-incremental inputs.
         *
         * <ul>
         *     <li>Any change to the property value always triggers a full rebuild of the work</li>
         *     <li>Changes for the property cannot be queried via {@link org.gradle.work.InputChanges}</li>
         * </ul>
         */
        NON_INCREMENTAL(false, false),
    
        /**
         * Incremental inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/IncrementalJavaProjectBuildIntegrationTest.groovy

        }
    
        @Test
        public void doesNotRebuildJarIfSourceHasNotChanged() {
            // Use own home dir so we don't blast the shared one when we run with -C rebuild
            executer.requireOwnGradleUserHomeDir()
    
            file("src/main/java/BuildClass.java") << 'public class BuildClass { }'
            file("build.gradle") << "apply plugin: 'java'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top