Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for prebuilt (0.25 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        finalizedBy 'largeNativeBuildPrebuilt'
    }
    
    performanceTest.registerTestProject("largeNativeBuildPrebuilt", GradleBuild) {
        buildFile = file("$largeNativeBuild.outputDirectory/prebuilt/util/build.gradle")
        dir = file("$largeNativeBuild.outputDirectory/prebuilt/util")
        tasks = ['build']
    }
    
    performanceTest.registerTestProject("archivePerformanceProject", Copy) {
        into "build/$name"
        from "src/templates/$name"
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    	// DeletedClusters contains list of all subset clusters for the deleted DR or updated DR.
    	// When clusters are rebuilt, we rebuild the subset clusters as well. So, we know what
    	// subset clusters are really needed. So if deleted cluster is not rebuilt, then it is really deleted.
    	builtClusters := sets.New[string]()
    	for _, c := range clusters {
    		builtClusters.Insert(c.Name)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

                include("a")
                include("b")
                rootProject.name = "root"
            """
            apply(testDirectory)
            apply(file("a"))
            apply(file("b"))
    
            // Prebuild buildSrc
            server.expect("configure-root")
            server.expect("configure-a")
            server.expect("configure-b")
            run()
    
            given:
            server.expect("configure-root")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pilot/pkg/features/experimental.go

    		"If set, used Kubernetes native Sidecar container support. Requires SidecarContainer feature flag.")
    
    	OptimizedConfigRebuild = env.Register("ENABLE_OPTIMIZED_CONFIG_REBUILD", true,
    		"If enabled, pilot will only rebuild config for resources that have changed").Get()
    
    	PassthroughTargetPort = env.Register("ENABLE_RESOLUTION_NONE_TARGET_PORT", true,
    		"If enabled, targetPort will be supported for resolution=NONE ServiceEntry").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                    }
                    result.addException(e);
                    throw new ArtifactDescriptorException(result);
                }
    
                Model model;
    
                // TODO hack: don't rebuild model if it was already loaded during reactor resolution
                final WorkspaceReader workspace = session.getWorkspaceReader();
                if (workspace instanceof MavenWorkspaceReader) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. 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)
  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. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run("impl:build")
    
            then:
            executed ":api:jar", ":impl:jar"
            fixture.assertProjectsConfigured(":", ":impl", ":api")
    
            when:
            run("impl:build", "--no-rebuild") // impl -> api
    
            then:
            executed ":impl:jar"
            notExecuted ":api:jar"
            // :api is configured to resolve impl.compileClasspath configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top