Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,623 for isIncluded (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

            given:
            def snippets = snippetsFactory.newSnippets(execOperationsFixture)
            testDirectory.file("included/settings.gradle") << """
                rootProject.name="included"
            """
    
            testDirectory.file("included/build.gradle") << """
                plugins {
                    id 'java-gradle-plugin'
                }
    
                gradlePlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/GradleBuild.java

        /**
         * Returns the included builds that were referenced by this build. This is the set of builds that were directly included by this build via its {@link org.gradle.api.initialization.Settings} instance.
         *
         * <p>Note that this set does not include builds that are added in other ways, such as a `buildSrc` build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildParallelIntegrationTest.groovy

                buildFile << """
                    apply plugin: 'java'
                    apply plugin: 'idea'
                """
            }
    
            def included = ['buildB', 'buildC', 'buildD']
            included.each { buildName ->
                def build = singleProjectBuild(buildName) {
                    buildFile << """
                        apply plugin: 'java'
                        apply plugin: 'idea'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

        }
    
        def "can execute task from included build"() {
            setup:
            settingsFile << '''
                rootProject.name = 'root'
                includeBuild 'included'
            '''
            file('included/settings.gradle') << '''
                rootProject.name = 'included'
            '''
            file('included/build.gradle') << '''
                tasks.register('foo')
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/html/template/content.go

    	// the encapsulated content should come from a trusted source,
    	// as it will be included verbatim in the template output.
    	HTML string
    
    	// HTMLAttr encapsulates an HTML attribute from a trusted source,
    	// for example, ` dir="ltr"`.
    	//
    	// Use of this type presents a security risk:
    	// the encapsulated content should come from a trusted source,
    	// as it will be included verbatim in the template output.
    	HTMLAttr string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternFilterable.java

     * is passed a {@link org.gradle.api.file.FileTreeElement}, and must return a boolean value.</p>
     *
     * <p>If no include patterns or specs are specified, then all files in this container will be included. If any include
     * patterns or specs are specified, then a file is included if it matches any of the patterns or specs.</p>
     *
     * <p>If no exclude patterns or spec are specified, then no files will be excluded. If any exclude patterns or specs are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                this.file = file;
                this.result = result;
                this.includeDirectives = includeDirectives;
                this.included = included;
                this.edges = edges;
                this.includeFileDirectives = dependentIncludeDirectives;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            def node1 = Mock(Node)
            root.file("sub/included").createDir()
    
            hierarchy.recordNodeAccessingFileTree(node1, root.absolutePath, includes("sub/included/*"))
    
            expect:
            nodesRelatedTo(root.file("sub/included")) == ([node1] as Set)
            nodesRelatedTo(root.file("sub/included/within")) == ([node1] as Set)
            nodesRelatedTo(root.file("sub/included/within/notMatched")) == Collections.emptySet()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top