Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,639 for includedIf (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

        def "Eclipse model builder can handle cycles between included builds"() {
            given:
            compositeWithDirectIncludeCycle()
    
            when:
            def model = withConnection { getModel(HierarchicalEclipseProject) }
    
            then:
            model.name == 'module-root'
        }
    
        def "Eclipse model builder can handle indirect cycles between included builds"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

            when:
            run ":projects"
    
            then:
            outputContains """
    Root project 'my-root-project'
    No sub-projects
    
    Included builds:
    
    +--- Included build ':another'
    \\--- Included build ':third'"""
        }
    
        def "included builds are only shown in the context of the root project"() {
            given:
            createDirs("p1", "p1/p11", "another")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnSingleFailureIntegrationTest.groovy

        def "executes delegate task with --continue"() {
            when:
            buildB.buildFile << """
        task included {
            dependsOn 'fails', 'succeeds', 'checkContinueFlag'
        }
    """
            buildA.buildFile << """
        task delegate {
            dependsOn gradle.includedBuild('buildB').task(':included')
        }
    """
            executer.withArguments(CONTINUE_COMMAND_LINE_OPTION)
            fails(buildA, ":delegate")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/CCompilerTest.groovy

        protected Class<CCompileSpec> getCompileSpecType() {
            CCompileSpec
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            def arguments = super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
            [ '-x', 'c' ] + arguments
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

     * target tasks from included builds by specifying the task identity path (i.e. {@code ':included-build-name:subproject-name:taskName'}).</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocator.java

        @Override
        boolean isValidComponentBinDir(File binDir) {
            // Nothing special to check for UCRT
            return true;
        }
    
        @Override
        boolean isValidComponentIncludeDir(File includeDir) {
            return new File(includeDir, "io.h").exists();
        }
    
        @Override
        boolean isValidComponentLibDir(File libDir) {
            for (String platform : PLATFORMS) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/GradleBuildModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.gradle.GradleBuild
    import spock.lang.Issue
    
    class GradleBuildModelCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion(">=3.3")
        def "Included builds are present in the model"() {
            given:
            def rootDir = singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/IncludedBuildState.java

    import org.gradle.api.internal.GradleInternal;
    
    import java.io.File;
    
    /**
     * Encapsulates the identity and state of an included build. An included build is a nested build that participates in dependency resolution and task execution with the root build and other included builds in the build tree.
     */
    public interface IncludedBuildState extends NestedBuildState, CompositeBuildParticipantBuildState {
        String getName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:25 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/ObjectiveCCompilerTest.groovy

            return ObjectiveCCompileSpec
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            def arguments = super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
            return ['-x', 'objective-c'] + arguments
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/CCompilerTest.groovy

        protected Class<CCompileSpec> getCompileSpecType() {
            CCompileSpec
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            [ '/TC' ] + super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top