Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for buildCommand (0.16 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProject.java

            this.projectNatures = projectNatures;
        }
    
        public List<DefaultEclipseBuildCommand> getBuildCommands() {
            return buildCommands;
        }
    
        public void setBuildCommands(List<DefaultEclipseBuildCommand> buildCommands) {
            this.buildCommands = buildCommands;
        }
    
        public DefaultEclipseJavaSourceSettings getJavaSourceSettings() {
            return javaSourceSettings;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/BuildCommitDistribution.kt

                "-PbuildCommitDistribution=true"
            )
    
            if (project.gradle.startParameter.isBuildCacheEnabled) {
                buildCommands.add("--build-cache")
            }
    
            return buildCommands.toTypedArray()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 08:07:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProjectTest.groovy

            project.projectNatures.isEmpty()
        }
    
        def emptyDefaultBuilderList() {
            def project = new DefaultEclipseProject("name", ":path", null, null, [])
    
            expect:
            project.buildCommands.isEmpty()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApEclipseModelNaturesAndBuildCommandsCrossVersionSpec.groovy

            settingsFile << "rootProject.name = 'root'"
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            def buildCommandNames = rootProject.buildCommands.collect{ it.name }
    
            then:
            buildCommandNames == expectedBuildCommandNames
    
            where:
            plugins                 | expectedBuildCommandNames
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

            }.run { builder ->
                def model = builder.get()
                // we must actually do something to highlight some performance issues
                forEachEclipseProject(model) {
                    buildCommands.each {
                        it.name
                        it.arguments
                    }
                    withGradleProject(gradleProject)
                    classpath.collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top