Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,623 for isIncluded (0.21 sec)

  1. 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)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r84/TestLauncherCompositeBuildCrossVersionTest.groovy

    @TargetGradleVersion('>=8.4')
    class TestLauncherCompositeBuildCrossVersionTest extends ToolingApiSpecification {
    
        enum LauncherApi {
            TEST_LAUNCHER,
            BUILD_LAUNCHER
        }
    
        def "Can run tasks from included builds"() {
            given:
            def runTestClass = withIncludedBuildTest(api)
    
            when:
            def output1 = runTestClass.apply('TestClass1')
    
            then:
            notThrown(Exception)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. pkg/kubeapiserver/admission/exclusion/resources.go

    	// END interception of these non-persisted resources may break the cluster
    }
    
    // Included returns a copy of the list of resources that the expression-based admission controllers
    // should intercept.
    func Included() []schema.GroupResource {
    	return slices.Clone(included)
    }
    
    // Excluded returns a copy of the list of resources that the expression-based admission controllers
    // should ignore.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/Bundling.java

     *             <li>{@code embedded} indicates that transitive dependencies have been included inside the component jar, without modifying their packages</li>
     *             <li>{@code shadowed} indicates that transitive dependencies have been included inside the component jar, under different packages to prevent conflicts</li>
     *         </ul>
     *     </li>
     *     <li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

                successful
            }
        }
    
        def "reports transform progress events for included builds"() {
            given:
            withFileSizerTransform()
            settingsFile.moveToDirectory(file('included'))
            buildFile.moveToDirectory(file('included'))
            settingsFile << """
                includeBuild 'included'
            """
            buildFile << """
                task run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "exposes task plan details"() {
            file("included-build").mkdir()
            file("included-build/settings.gradle")
            file("included-build/build.gradle") << """
                apply plugin:'java-library'
                group = 'org.acme'
                version = '1.0'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorJdkVersionsIntegrationTest.groovy

        def configureForVersion(JavaVersion javaVersion) {
            String version = javaVersion.majorVersion
    
            def target = AvailableJavaHomes.getJdk(javaVersion)
            Assume.assumeNotNull(target)
    
            file("included/src/main/java/com/example/BlankPlugin.java") << """
                package com.example;
    
                import org.gradle.api.Plugin;
                import org.gradle.api.Project;
                import javax.inject.Inject;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top