Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for prebuilt (0.24 sec)

  1. ChangeLog.md

    - [`KT-65222`](https://youtrack.jetbrains.com/issue/KT-65222) Native compile task fails after clean reimport
    - [`KT-52483`](https://youtrack.jetbrains.com/issue/KT-52483) Sign native prebuilt tars
    - [`KT-62800`](https://youtrack.jetbrains.com/issue/KT-62800) CInteropProcess should not require .def file to exist
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip.go

    	services, err := r.serviceLister.List(labels.Everything())
    	if err != nil {
    		return fmt.Errorf("unable to refresh the service IP block: %v", err)
    	}
    
    	// Check every Service's ClusterIP, and rebuild the state as we think it should be.
    	for _, svc := range services {
    		key, err := cache.MetaNamespaceKeyFunc(svc)
    		if err != nil {
    			return err
    		}
    		err = r.syncService(key)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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