Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for buildSpec (0.15 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativePreCompiledHeaderPerformanceTest.groovy

        def "clean assemble with precompiled headers" () {
            given:
            runner.testGroup = 'pre-compiled header builds'
            runner.buildSpec {
                displayName("Using PCH")
                invocation {
                    args("-PusePCH")
                    tasksToRun("clean", "assemble")
                }
            }
            runner.baseline {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskAvoidancePerformanceTest.groovy

    class TaskAvoidancePerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "help with lazy and eager tasks"() {
            given:
            runner.testGroup = "configuration avoidance"
            runner.buildSpec {
                displayName("lazy")
                invocation {
                    tasksToRun("help")
                }
            }
            runner.baseline {
                displayName("eager")
                invocation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

            this.testProject = TestScenarioSelector.loadConfiguredTestProject()
        }
    
        void baseline(@DelegatesTo(GradleBuildExperimentSpec.GradleBuilder) Closure<?> configureAction) {
            buildSpec(configureAction)
        }
    
        void buildSpec(@DelegatesTo(GradleBuildExperimentSpec.GradleBuilder) Closure<?> configureAction) {
            def builder = GradleBuildExperimentSpec.builder()
            builder.projectName = testProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

    <projectDescription>
    	<name>root</name>
    	<comment></comment>
    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    		</buildCommand>
    	</buildSpec>
    	<linkedResources/>
    	<filteredResources>
    		<filter>
    			<id>1</id>
    			<type>9</type>
    			<name/>
    			<matcher>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/buildship.gradle

    <projectDescription>
      <name>org.gradle.toolingapi</name><comment/><projects/>
      <buildSpec>
        <buildCommand><name>org.eclipse.jdt.core.javabuilder</name><arguments/></buildCommand>
        <buildCommand><name>org.eclipse.pde.ManifestBuilder</name><arguments/></buildCommand>
        <buildCommand><name>org.eclipse.pde.SchemaBuilder</name><arguments/></buildCommand>
      </buildSpec>
      <natures>
        <nature>org.eclipse.pde.PluginNature</nature>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativeParallelPerformanceTest.groovy

    )
    class NativeParallelPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with parallel workers"() {
            given:
            runner.testGroup = 'parallel builds'
            runner.buildSpec {
                displayName("parallel")
                invocation {
                    tasksToRun("clean", "assemble")
                }
            }
            runner.baseline {
                displayName("serial")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/java/ParallelBuildPerformanceTest.groovy

    )
    class ParallelBuildPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with 4 parallel workers"() {
            given:
            runner.testGroup = "parallel builds"
            runner.buildSpec {
                displayName("parallel")
                invocation {
                    args("-Dorg.gradle.parallel=true", "--max-workers=4")
                }
            }
            runner.baseline {
                displayName("serial")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. tools/docker-builder/builder/crane.go

    	"github.com/google/go-containerregistry/pkg/v1/tarball"
    	"github.com/google/go-containerregistry/pkg/v1/types"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/tracing"
    )
    
    type BuildSpec struct {
    	// Name is optional, for logging
    	Name  string
    	Dests []string
    	Args  []Args
    }
    
    type Args struct {
    	// Name is optional, for logging
    	Name string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tools/docker-builder/crane.go

    	// so we can pull them in the background
    	builds := []builder.BuildSpec{}
    	bases := sets.New[string]()
    	for _, v := range a.Variants {
    		for _, t := range a.Targets {
    			b := builder.BuildSpec{
    				Name:  t,
    				Dests: extractTags(a, t, v, hasDoubleDefault),
    			}
    			for _, arch := range a.Architectures {
    				p := a.PlanFor(arch).Find(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

                    if (manageCacheState) {
                        addBuildMutator { new ManageLocalCacheState(it.projectDir) }
                    }
                }
            }
    
            runner.buildSpec {
                warmUpCount WARMUPS
                invocationCount INVOCATIONS
                displayName(WITH_PLUGIN_LABEL)
                invocation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top