- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for subprojects (0.04 sec)
-
.teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt
} data class SmallSubprojectBucket( val subprojects: List<GradleSubproject>, val parallelizationMethod: ParallelizationMethod, ) : BuildTypeBucket { constructor( subproject: GradleSubproject, parallelizationMethod: ParallelizationMethod, ) : this(listOf(subproject), parallelizationMethod)
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 3.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
FunctionalTestBucket(it).toBuildTypeBucket(model.subprojects) } // Sometimes people may add new subproject into `subprojects.json` // in this case we have no historical test running time, so we simply add these subprojects into first available bucket val allSubprojectsInBucketJson = buckets.flatMap { it.subprojects.map { it.name } }.toSet() val allSubprojectsInModel =
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 05:08:24 UTC 2025 - 8.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
val model = CIBuildModel( projectId = "Check", branch = VersionedSettingsBranch("master"), buildScanTags = listOf("Check"), subprojects = JsonBasedGradleSubprojectProvider(File("./subprojects.json")), ) val testClassDataJson = File(System.getProperty("inputTestClassDataJson") ?: throw IllegalArgumentException("Input file not found!"))
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 7.3K bytes - Viewed (0) -
.github/CODEOWNERS
platforms/core-execution/snapshots/ @gradle/bt-cortex @gradle/dv-integrations-team # Other core modules subprojects/core # @gradle/bt-cortex to be eventually moved to other core modules subprojects/core-api # @gradle/bt-cortex to be eventually moved to other core modules # Develocity integration
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Jul 28 01:45:03 UTC 2025 - 10.9K bytes - Viewed (0) -
build.gradle.kts
/** Configure building for Java+Kotlin projects. */ subprojects { val project = this@subprojects if (project.name == "okhttp-bom") return@subprojects if (project.name == "okhttp-android") return@subprojects if (project.name == "android-test") return@subprojects if (project.name == "regression-test") return@subprojects if (project.name == "android-test-app") return@subprojects if (project.name == "container-tests") return@subprojects
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 11.3K bytes - Viewed (0) -
okhttp-bom/build.gradle.kts
plugins { id("com.vanniktech.maven.publish.base") id("java-platform") } dependencies { constraints { project.rootProject.subprojects.forEach { subproject -> if (subproject.name != "okhttp-bom") { api(subproject) } } api("com.squareup.okhttp3:okhttp-jvm:${project.version}") api("com.squareup.okhttp3:okhttp-android:${project.version}") } } publishing {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Jul 13 08:32:01 UTC 2025 - 501 bytes - Viewed (0) -
.github/workflows/contributor-pr.yml
runs-on: ubuntu-latest steps: - name: git clone uses: actions/checkout@v5 - 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@v5 with: distribution: temurin java-version: 17 - id: determine-sys-prop-args
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Sep 04 22:13:34 UTC 2025 - 4.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
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 fun shortenSubprojectName(
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Sun Aug 03 22:40:28 UTC 2025 - 25.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
build/tmp/teŝt files/** => $HIDDEN_ARTIFACT_DESTINATION/teŝt-files build/errorLogs/** => $HIDDEN_ARTIFACT_DESTINATION/errorLogs build/reports/configuration-cache/**/configuration-cache-report.html subprojects/internal-build-reports/build/reports/incubation/all-incubating.html => incubation-reports testing/architecture-test/build/reports/binary-compatibility/report.html => binary-compatibility-reports
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
</annotations> </field> <field xdoc.separator="blank"> <name>subprojects</name> <version>4.1.0+</version> <description>The subprojects (formerly called modules) to build as a part of this project. Each subproject listed is a relative path to the directory containing the subproject. To be consistent with the way default URLs are calculated from parent, it is recommended
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0)