- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 417 for forking (0.06 sec)
-
build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts
description = "Runs the cross-version tests against all Gradle versions with 'forking' executer" } val quickFeedbackCrossVersionTests = tasks.register("quickFeedbackCrossVersionTests") { group = "verification" description = "Runs the cross-version tests against a subset of selected Gradle versions with 'forking' executer for quick feedback" }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Sep 05 02:31:24 UTC 2025 - 4.5K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt
import org.gradle.api.tasks.testing.Test enum class TestType(val prefix: String, val executers: List<String>) { INTEGRATION("integ", listOf("embedded", "forking", "noDaemon", "parallel", "configCache", "isolatedProjects")), CROSSVERSION("crossVersion", listOf("embedded", "forking")) } fun Test.includeSpockAnnotation(fqcn: String) { systemProperties.compute("include.spock.annotation") { _, oldValue ->
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 1.3K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts
extendsFrom(configurations.named("integTestDistributionRuntimeOnly").get()) } createTasks(sourceSet, TestType.INTEGRATION) configureIde(TestType.INTEGRATION) createTestTask("integMultiVersionTest", "forking", sourceSet, TestType.INTEGRATION) { // This test task runs only multi-version tests and is intended to be used in the late pipeline to sweep up versions not previously tested
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 16:39:23 UTC 2025 - 2.4K bytes - Viewed (5) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeIdeTest.kt
import org.gradle.api.tasks.CacheableTask /** * A test that provides an IDE as environment for checking IDE and Gradle behavior during synchronization process. * These tests are running using `forking` executor, since current Gradle distribution has to be used as a Gradle version for IDE. */ @CacheableTask abstract class SmokeIdeTest : DistributionTest() { override val prefix: String = "smokeIde"
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 29 10:30:14 UTC 2023 - 1K bytes - Viewed (0) -
.github/CONTRIBUTING.md
- Favour a working external library if appropriate. There are many examples of OkHttp libraries that can sit on top or hook in via existing APIs. - Get working code on a personal branch with tests before you submit a PR. - OkHttp is a small and light dependency. Don't introduce new dependencies or major new functionality.
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Mar 17 04:16:26 UTC 2019 - 1.4K bytes - Viewed (0) -
CONTRIBUTING.md
Code Contributions ------------------ Get working code on a personal branch with tests passing before you submit a PR: ``` ./gradlew clean check ``` Please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Contribute code changes through GitHub by forking the repository and sending a pull request. We squash all pull requests on merge.
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Feb 14 08:26:50 UTC 2023 - 2K bytes - Viewed (0) -
docs/contribute/contributing.md
Code Contributions ------------------ Get working code on a personal branch with tests passing before you submit a PR: ``` ./gradlew clean check ``` Please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Contribute code changes through GitHub by forking the repository and sending a pull request. We squash all pull requests on merge.
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Feb 14 08:26:50 UTC 2023 - 2K bytes - Viewed (0) -
CONTRIBUTING.md
``MinIO`` community welcomes your contribution. To make the process as seamless as possible, we recommend you read this contribution guide. ## Development Workflow Start by forking the MinIO GitHub repository, make changes in a branch and then send a pull request. We encourage pull requests to discuss code changes. Here are the steps in details: ### Setup your MinIO GitHub Repository
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon Aug 05 18:35:53 UTC 2024 - 2.9K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/feature_addition_request.yaml
#### Utility: compare with alternatives There is always *some* alternative to adding a new feature to Guava, even if it's just forking Guava yourself. We want to see that new features have some significant advantage over the alternatives. These advantages can takeRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Nov 17 18:47:47 UTC 2023 - 5.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java
if (logger.isInfoEnabled() && event.getMojoExecution().getForkedExecutions().size() > 1) { init(); logger.info(""); infoLine('>'); infoMain("Forking " + event.getProject().getName() + " " + event.getProject().getVersion()); infoLine('>'); } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Dec 13 15:40:45 UTC 2024 - 17.5K bytes - Viewed (0)