Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 197 for prebuilt (0.34 sec)

  1. 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)
  2. 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)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskConstantChangesIncrementalCompilationIntegrationTest.groovy

            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('Y')
        }
    
        def "change in an upstream transitive class with non-private constant does not cause full rebuild"() {
            source api: ["class A { final static int x = 1; }", "class B extends A {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. lib/time/README

    The IANA asserts that the database is in the public domain.
    
    For more information, see
    https://www.iana.org/time-zones
    ftp://ftp.iana.org/tz/code/tz-link.html
    https://datatracker.ietf.org/doc/html/rfc6557
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 15 02:18:46 UTC 2021
    - 390 bytes
    - Viewed (0)
  5. src/cmd/dist/doc.go

    // Dist helps bootstrap, build, and test the Go distribution.
    //
    // Usage:
    //
    //	go tool dist [command]
    //
    // The commands are:
    //
    //	banner         print installation banner
    //	bootstrap      rebuild everything
    //	clean          deletes all built files
    //	env [-p]       print environment (-p: include $PATH)
    //	install [dir]  install individual directory
    //	list [-json]   list all supported platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 645 bytes
    - Viewed (0)
  6. src/all.rc

    rfork n
    
    if(! test -f make.rc){
    	echo 'all.rc must be run from $GOROOT/src' >[1=2]
    	exit wrongdir
    }
    
    . ./make.rc --no-banner $*
    bind -b $GOROOT/bin /bin
    ./run.rc --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 20 04:53:46 UTC 2020
    - 388 bytes
    - Viewed (0)
  7. src/all.bat

    make.bat goto ok
    L10:echo all.bat must be run from go\src
    L11::: cannot exit: would kill parent command interpreter
    L12:goto end
    L13::ok
    L14:
    L15:call .\make.bat --no-banner --no-local
    L16:if %GOBUILDFAIL%==1 goto end
    L17:call .\run.bat --no-rebuild --no-local
    L18:if %GOBUILDFAIL%==1 goto end
    L19:"%GOTOOLDIR%/dist" banner
    L20:
    L21::end
    L22:if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL%
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:36:22 UTC 2023
    - 543 bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/TaskExecutionMode.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.changedetection;
    
    import java.util.Optional;
    
    public interface TaskExecutionMode {
        /**
         * Return rebuild reason if any.
         */
        Optional<String> getRebuildReason();
    
        /**
         * Returns whether the execution history should be stored.
         */
        boolean isTaskHistoryMaintained();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 03 11:19:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/GradleBuildContinuousIntegrationTest.groovy

            buildFile << """
                task gradleBuild(type: GradleBuild) {
                    dir = file("gradle-build")
                    tasks = [ "someTask" ]
                }
            """
        }
    
        def "will rebuild on input change for GradleBuild task"() {
            def outputFile = file("gradle-build/build/output.txt")
    
            when:
            succeeds("gradleBuild")
            then:
            outputFile.text == "first"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top