- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for subproject (0.12 sec)
-
.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
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
CONTRIBUTING.md
### Testing changes After making changes, you can test your code in 2 ways: 1. Run tests. - Run `./gradlew :<subproject>:quickTest` where `<subproject>` is the name of the subproject you've changed. - For example: `./gradlew :launcher:quickTest`. 2. Install Gradle locally and try out a change in behavior manually. - Install: `./gradlew install -Pgradle_installPath=/any/path`
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Nov 05 15:15:33 UTC 2024 - 15.6K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml
<!-- We like it explicit --> <suppress checks="ExplicitInitializationCheck" files=".*"/> <!-- Ignore code from maven subproject under org.apache --> <suppress checks="RegexpSingleline" files=".*[/\\]maven[/\\]src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\].+"/> <suppress checks="RegexpHeader"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jun 10 14:28:48 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
* Fix: Support 204 and 205 'No Content' replies in the logging interceptor. * New: Add `Call.isExecuted()`. ## Version 2.6.0 _2015-11-22_ * **New Logging Interceptor.** The `logging-interceptor` subproject offers simple request and response logging. It may be configured to log headers and bodies for debugging. It requires this Maven dependency: ```xml <dependency>
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
.teamcity/subprojects.json
"functionalTests": false, "crossVersionTests": false }, { "name": "core", "path": "subprojects/core", "unitTests": true, "functionalTests": true, "crossVersionTests": true }, { "name": "core-api", "path": "subprojects/core-api", "unitTests": true, "functionalTests": true, "crossVersionTests": false }, {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 23 22:33:41 UTC 2024 - 34.3K bytes - Viewed (0) -
.github/CODEOWNERS
testing/internal-performance-testing/ @gradle/bt-developer-productivity testing/internal-testing/ @gradle/bt-developer-productivity # Release coordination subprojects/core-platform/ @gradle/bt-support subprojects/distributions-dependencies/ @gradle/bt-support subprojects/distributions-full/ @gradle/bt-support testing/performance/ @gradle/bt-support testing/smoke-test/ @gradle/bt-support
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 24 14:46:27 UTC 2024 - 10.6K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
} private val subprojectProvider = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")) private val model = CIBuildModel( projectId = "Check", branch = VersionedSettingsBranch.fromDslContext(), buildScanTags = listOf("Check"), subprojects = subprojectProvider )
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy
-Dorg.gradle.deprecation.trace=true -Djava.io.tmpdir=C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\tmp -Dfile.encoding=windows-1252 -Dorg.gradle.classloaderscope.strict=true -ea -ea "-Dorg.gradle.appname=gradle" -classpath "C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\integ test\\bin\\..\\lib\\gradle-launcher-4.5.jar" org.gradle.launcher.GradleMain --init-script "C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\tmp\\teŝt files\\OsgiPluginIntegrationSpec\\can_merge_manifests.....
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 12 03:42:46 UTC 2024 - 14.8K bytes - Viewed (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt
.withBinding("packageNameChoice", packageNameChoice) .withBinding("applicationStructureChoice", applicationStructureChoice) .withBinding("subprojectName", settings.subprojects.first()) .withBinding("toolChain", toolChain) .withBinding("exampleClass", exampleClass) .withBinding("sourceFile", sourceFile) .withBinding("testSourceFile", testSourceFile)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 22 11:11:17 UTC 2024 - 13.5K bytes - Viewed (0) -
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)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 14 12:35:52 UTC 2023 - 10.6K bytes - Viewed (0)