Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for notIncluded (0.15 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

        def "source is not recompiled when preprocessor removed header is changed"() {
            given:
            def notIncluded = file("src/main/headers/notIncluded.h")
            notIncluded.text = """#pragma message("should not be used")"""
            sourceFile << """
                #if 0
                #include "${notIncluded.name}"
                #else
                #include "${otherHeaderFile.name}"
                #endif
    """
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

        def testCanSelectFilesUsingPatterns() {
            File included1 = new File(testDir, 'subDir/included1')
            File included2 = new File(testDir, 'subDir2/included2')
            File excluded1 = new File(testDir, 'subDir/notincluded')
            File ignored1 = new File(testDir, 'ignored')
            [included1, included2, excluded1, ignored1].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            def headerFile = file("app/src/main/not_included/hello.h") << """
                const char* get_hello();
                #define PREFIX get_hello()
            """
    
            def sourceFile = file("app/src/main/cpp/hello.cpp")
            sourceFile.text = """
                #include <iostream>
                #include "../not_included/hello.h"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top