Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for subprojects (0.31 sec)

  1. .github/workflows/contributor-pr.yml

        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - id: setup-matrix
            run: echo "matrix=$(jq -c -f .github/workflows/extract-unit-test-split.jq .teamcity/subprojects.json)" >> $GITHUB_OUTPUT
          - name: setup java
            uses: actions/setup-java@v4
            with:
              distribution: temurin
              java-version: 11
          - id: determine-sys-prop-args
    Others
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu May 02 09:13:16 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  2. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

                import org.gradle.api.internal.tasks.testing.TestResultProcessor
    
                plugins {
                    id("gradlebuild.ci-reporting")
                }
    
                subprojects {
                    apply(plugin = "gradlebuild.ci-reporting")
                }
    
                project(":failed-test-with-leftover").configureTestWithLeftover(false, true)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 14 12:35:52 GMT 2023
    - 10.6K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/configuration-management.apt

     their source trees set up in the same way as their colleagues.
    
     here's what I do currently in the netbeans part of the mavenide project to
     find the relevant subprojects/sibling projects. I check if the user has
     defined the maven.multiproject.includes property in any of his properties
     files for the current project. if yes. then I'm able to find projects that
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            get() = "${testType.name.toCapitalized()}_$uuid"
    
        fun asConfigurationId(model: CIBuildModel, subProject: String = ""): String {
            val prefix = "${testCoveragePrefix}_"
            val shortenedSubprojectName = shortenSubprojectName(model.projectId, prefix + subProject)
            return model.projectId + "_" + if (subProject.isNotEmpty()) shortenedSubprojectName else "${prefix}0"
        }
    
        private
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                        plugins {
                            base
                            kotlin("jvm") version "$embeddedKotlinVersion" apply false
                        }
                        subprojects {
                            apply(plugin = "gradlebuild.module-identity")
                            apply(plugin = "kotlin")
                            the<ModuleIdentityExtension>().baseName.set("api-module")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

            build/report-* => $hiddenArtifactDestination
            build/tmp/teŝt files/** => $hiddenArtifactDestination/teŝt-files
            build/errorLogs/** => $hiddenArtifactDestination/errorLogs
            subprojects/internal-build-reports/build/reports/incubation/all-incubating.html => incubation-reports
            build/reports/dependency-verification/** => dependency-verification-reports
        """.trimIndent()
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  7. gradlew

    #       There are tweaks for specific operating systems such as AIX, CygWin,
    #       Darwin, MinGW, and NonStop.
    #
    #   (3) This script is generated from the Groovy template
    #       https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
    #       within the Gradle project.
    #
    #       You can find Gradle at https://github.com/gradle/gradle/.
    #
    Shell Script
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Dec 24 09:00:26 GMT 2023
    - 8.5K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

          </description>
          <fields>
            <field xdoc.separator="blank">
              <name>modules</name>
              <version>4.0.0+</version>
              <description>The modules (sometimes called subprojects) to build as a part of this
                project. Each module listed is a relative path to the directory containing the module.
                To be consistent with the way default urls are calculated from parent, it is recommended
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-52134`](https://youtrack.jetbrains.com/issue/KT-52134) KJS: the default generated JS module name in a Gradle project with multiple subprojects is incomplete, which might cause duplicate names and build conflicts
    - [`KT-52776`](https://youtrack.jetbrains.com/issue/KT-52776) KJS / Gradle: Webpack version update despite yarn.lock breaks Kotlin/JS build
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
  10. .teamcity/src/main/kotlin/projects/StageProject.kt

            functionalTestProjects.forEach { functionalTestProject ->
                this@StageProject.subProject(functionalTestProject)
            }
            val functionalTestsPass = functionalTestProjects.map { functionalTestProject ->
                FunctionalTestsPass(model, functionalTestProject).also { ******@****.***ype(it) }
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
Back to top