Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for prebuilt (0.19 sec)

  1. src/cmd/go/testdata/script/mod_edit_go.txt

    # Test support for go mod edit -go to set language version.
    
    env GO111MODULE=on
    ! go build
    stderr ' type alias requires'
    go mod edit -go=1.9
    grep 'go 1.9' go.mod
    go build
    
    # Reverting the version should force a rebuild and error instead of using
    # the cached 1.9 build. (https://golang.org/issue/37804)
    go mod edit -go=1.8
    ! go build
    stderr 'type alias requires'
    
    # go=none should drop the line
    go mod edit -go=none
    ! grep go go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 506 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            when:
            configurationCacheRun ":a:some"
    
            then:
            result.groupedOutput.task(":a:some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when: // rebuild task graph, with tasks from the same set of scripts
            configurationCacheRun ":a:some", ":a:other"
    
            then:
            result.groupedOutput.task(":a:some").assertOutputContains("FIRST").assertOutputContains("LAST")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

    import java.io.Closeable;
    import java.io.File;
    
    /**
     * Represents a directory that can be used for caching.
     *
     * <p>By default, a shared lock is held on this cache by this process, to prevent it being removed or rebuilt by another process
     * while it is in use. You can change this use {@link CacheBuilder#withInitialLockMode(org.gradle.cache.FileLockManager.LockMode)}.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/all.bash

    # license that can be found in the LICENSE file.
    
    set -e
    if [ ! -f make.bash ]; then
    	echo 'all.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    . ./make.bash "$@" --no-banner
    bash run.bash --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:53:58 UTC 2024
    - 377 bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/CachedKotlinTaskExecutionIntegrationTest.groovy

                    }
                }
            """
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @LeaksFileHandles
        def "tasks stay cached after buildSrc with custom Kotlin task is rebuilt"() {
            withKotlinBuildSrc()
            file("buildSrc/src/main/kotlin/CustomTask.kt") << customKotlinTask()
            file("input.txt") << "input"
            buildFile << """
                task<CustomTask>("customTask") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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