Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 94 of 94 for buildIdentifier (0.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

                assert successful
                assertIsProjectConfiguration()
                assert descriptor.project.projectPath == projectPath
                assert descriptor.project.buildIdentifier.rootDir == rootDir
            }
        }
    
        def "reports failed project configuration progress events"() {
            given:
            buildFile << """
                throw new GradleException("something went horribly wrong")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            when:
            def project = withConnection { connection -> connection.getModel(CppProject.class) }
    
            then:
            project.projectIdentifier.projectPath == ':'
            project.projectIdentifier.buildIdentifier.rootDir == projectDir
    
            project.mainComponent instanceof CppApplication
            project.mainComponent.name == 'main'
            project.mainComponent.baseName == 'app'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    =====
    
    [[build_identifier_name_and_current_deprecation]]
    ==== `link:{javadocPath}/org/gradle/api/artifacts/component/BuildIdentifier.html[BuildIdentifier]` and `link:{javadocPath}/org/gradle/api/artifacts/component/ProjectComponentSelector.html[ProjectComponentSelector]` method deprecations
    
    The following methods on `BuildIdentifier` are deprecated:
    
    - `getName()`
    - `isCurrentBuild()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (2)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

    """
        }
    
        void hasCompositeWithUnusedBuildIdentified() {
            def buildIdentified = operations.progress(BuildIdentifiedProgressDetails)
            assert buildIdentified.size() == 2
            with(buildIdentified[0].details) {
                assert buildPath == ':'
            }
            with(buildIdentified[1].details) {
                assert buildPath == ':unused'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top