Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 197 for prebuilt (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    * Benefiting from continuous runtime optimization in the JVM
    * <<file_system_watching.adoc#sec:daemon_watch_fs,Watching the file system>> to calculate exactly what needs to be rebuilt before you run a build
    
    [[understanding_wrapper]]
    == Understanding the Daemon
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

                javaProject.assertJarHasDescendants(javaProject.mainClassFile.name, javaProject.redundantClassFile.name)
            }
    
            when:
            // Remove some files and rebuild a single task with the latest version of Gradle
            javaProjects.each {
                forceDelete(it.redundantSourceFile)
            }
            executer.withArguments(arguments)
            succeeds(singleTask)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/encoding/json/bench_test.go

    	clearCache := func() {
    		fieldCache = sync.Map{}
    	}
    
    	// MissTypes tests the performance of repeated cache misses.
    	// This measures the time to rebuild a cache of size nt.
    	for nt := 1; nt <= maxTypes; nt *= 10 {
    		ts := types[:nt]
    		b.Run(fmt.Sprintf("MissTypes%d", nt), func(b *testing.B) {
    			nc := runtime.GOMAXPROCS(0)
    			for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    =====
    ====
    
    [NOTE]
    ====
    A change in `buildSrc` causes the whole project to become out-of-date.
    
    Thus, when making small incremental changes, the <<command_line_interface#sec:command_line_execution_options, `--no-rebuild` command-line option>> is often helpful to get faster feedback.
    Remember to run a full build regularly.
    ====
    
    == Declare properties in `gradle.properties` file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/action.go

    // If shlib is non-empty, then a corresponds to the build and installation of shlib,
    // so any rebuild of shlib should not be added as a dependency.
    func (b *Builder) addTransitiveLinkDeps(a, a1 *Action, shlib string) {
    	// Expand Deps to include all built packages, for the linker.
    	// Use breadth-first search to find rebuilt-for-test packages
    	// before the standard ones.
    	// TODO(rsc): Eliminate the standard ones from the action graph,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Indicates that versions for the specified modules have to be updated in the <<dependency_locking.adoc#dependency-locking,lock file>>.
    +
    This flag also implies `--write-locks`.
    
    `-a`, `--no-rebuild`::
    Do not rebuild project dependencies.
    Useful for <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc, debugging and fine-tuning `buildSrc`>>, but can lead to wrong results. Use with caution!
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    For runtime classpaths Gradle inspects the contents of jar files and ignores the timestamps and order of the entries in the jar file.
    This means that a rebuilt jar file would be considered the same runtime classpath input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            withBuildCache().run "help"
            then:
            result.groupedOutput.task(":buildSrc:compileGroovy").outcome == "FROM-CACHE"
        }
    
        def "tasks stay cached after buildSrc with custom Groovy task is rebuilt"() {
            configureCacheForBuildSrc()
            file("buildSrc/src/main/groovy/CustomTask.groovy") << defineCachedTask()
            file("input.txt") << "input"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/internal/profile/graph.go

    // identical NodeInfos. A *Node does uniquely identify a node so we can use that
    // instead. Though a *Node also uniquely identifies a node in a graph,
    // currently, during trimming, graphs are rebuilt from scratch using only the
    // NodeSet, so there would not be the required context of the initial graph to
    // allow for the use of *Node.
    type NodePtrSet map[*Node]bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    * running in the background so every Gradle build doesn't have to wait for JVM startup
    * benefiting from continuous runtime optimization in the JVM
    * watching the file system to calculate exactly what needs to be rebuilt before you run a build
    
    Gradle enables the Daemon by default, but some builds override this preference.
    If your build disables the Daemon, you could see a significant performance improvement
    from enabling the daemon.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top