Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for subproject (0.17 sec)

  1. 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`
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat May 04 07:43:02 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  2. .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)
  3. 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>
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 26.6K bytes
    - Viewed (0)
  4. 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"
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 11 10:51:28 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  5. .teamcity/subprojects.json

      },
      {
        "name": "core",
        "path": "subprojects/core",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "core-api",
        "path": "subprojects/core-api",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "core-platform",
        "path": "subprojects/core-platform",
        "unitTests": false,
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue May 07 22:21:19 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  6. .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
        )
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Jan 02 10:00:06 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  7. 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.....
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Sep 28 07:00:39 GMT 2023
    - 14.4K bytes
    - Viewed (0)
  8. .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
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 15:52:09 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  9. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .withBinding("componentTypeIndex", "" + (descriptor.componentType.ordinal + 1))
                .withBinding("packageNameChoice", packageNameChoice)
                .withBinding("subprojectName", settings.subprojects.first())
                .withBinding("toolChain", toolChain)
                .withBinding("exampleClass", exampleClass)
                .withBinding("sourceFile", sourceFile)
                .withBinding("testSourceFile", testSourceFile)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 06 17:51:21 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  10. 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)
Back to top