Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 689 for includedIf (0.32 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

        }
    
        private DirectoryContents toDir(File includeDir) {
            DirectoryContents directoryContents = includeRoots.get(includeDir);
            if (directoryContents == null) {
                directoryContents = new DirectoryContents(includeDir);
                includeRoots.put(includeDir, directoryContents);
            }
            return directoryContents;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

         * which in turn depend on a plugin from another included build (:plugin-0).
         *
         * In addition, projects :a and :b also depend on the :plugins build for the model building plugin.
         **/
        def "projects are configured in parallel when projects use plugins from included builds and project scoped model is queried concurrently"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            when:
            run "mainExecutable"
            then:
            skipped compileTask
        }
    
        @ToBeFixedForConfigurationCache
        def "does not recompile when included header has the same name as a directory"() {
            given:
            buildFile << """
    model {
        components {
            main {
                sources.all {
                    exportedHeaders {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

            File existingForPath = nestedBuildDirectoriesByPath.putIfAbsent(requestedPath, dir);
            if (existingForPath != null) {
                throw new GradleException("Included build " + dir + " has build path " + requestedPath + " which is the same as included build " + existingForPath);
            }
    
            return requestedPath;
        }
    
        private static boolean isPrefix(File prefix, File toCheck) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

                    allprojects {
                        apply plugin: 'java'
                    }
    """
            }
            includedBuilds << buildB
        }
    
        def "generates build operations for tasks in included builds"() {
            given:
            dependency 'org.test:buildB:1.0'
    
            when:
            execute(buildA, ":jar")
    
            then:
            executed ":buildB:jar"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            when:
            sourceFile << """
        #include "$included"
        #import "$included"
    """
            then:
            includes == ['"' + included + '"'].collect { include(it) }
            imports == ['"' + included + '"'].collect { include(it, true) }
    
            where:
            included << ["test'file", "testfile'", "'testfile'", "test<>file", "test>file", "<testFile>", "test<file", "test file"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildPathAssignmentIntegrationTest.groovy

            when:
            fails(includingBuild, 'help')
            then:
            failure.assertHasDescription("Included build ${file('nested')} has build path :nested which is the same as included build ${file('includedBuildB/nested')}")
    
            where:
            laterDescription             | includeFromNestedBuild
            'later from nested build'    | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 09:41:26 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

        /**
         * Provides the software component that should be published.
         *
         * <ul>
         *     <li>Any artifacts declared by the component will be included in the publication.</li>
         *     <li>The dependencies declared by the component will be included in the published meta-data.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

            runtimeExec().groovy                   | _
        }
    
        def "using #snippetsFactory.summary in task of included plugin build is not a problem"() {
            given:
            def snippets = snippetsFactory.newSnippets(execOperationsFixture)
            def includedBuildFile = testDirectory.file("included/build.gradle")
            includedBuildFile << """
                import ${DefaultTask.name};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

        def "fires build listener events on included builds"() {
            given:
            dependency 'org.test:buildB:1.0'
            dependency buildB, 'org.test:buildC:1.0'
    
            when:
            execute()
    
            then:
            verifyBuildEvents()
        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
        def "fires build listener events for unused included builds"() {
            when:
            execute()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top