Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for testing (0.18 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

    Laura Kassovic <******@****.***> 1701204040 -0800
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Nov 28 20:40:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            val allDistribution = bucket("${prefix}TestAllDistribution", "Declare a all distribution to be used by tests - useful for testing the final distribution that is published")
            val docsDistribution = bucket("${prefix}TestDocsDistribution", "Declare a docs distribution to be used by tests - useful for testing the final distribution that is published")
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  3. .github/workflows/notify-on-rc-for-manual-test.yml

    name: IDE Experience team notifier
    run-name: Notify the IDE Experience team about new RCs for manual testing
    on:
      push:
        tags:
          - 'v*.*.*-RC1'
    
    jobs:
      send-slack-notification:
        runs-on: ubuntu-latest
        steps:
          - name: Send Slack notification about new RCs for manual testing
            id: slack
            uses: slackapi/slack-github-action@v1.23.0
            with:
              payload: |
                {
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Mar 16 08:48:39 GMT 2023
    - 1008 bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.basics.testing.TestType
    import gradlebuild.basics.testing.includeSpockAnnotation
    import gradlebuild.integrationtests.addDependenciesAndConfigurations
    import gradlebuild.integrationtests.addSourceSet
    import gradlebuild.integrationtests.configureIde
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Nov 21 22:31:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val pmavenGroovy = "org.sonatype.pmaven:pmaven-groovy"
        val slf4jApi = "org.slf4j:slf4j-api"
        val slf4jSimple = "org.slf4j:slf4j-simple"
        val snakeyaml = "org.yaml:snakeyaml"
        val testng = "org.testng:testng"
        val tomlj = "org.tomlj:tomlj"
        val trove4j = "org.jetbrains.intellij.deps:trove4j"
        val jna = "net.java.dev.jna:jna"
        val agp = "com.android.tools.build:gradle"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/argumentproviders/CiEnvironmentProvider.kt

     */
    
    package gradlebuild.jvm.argumentproviders
    
    import gradlebuild.basics.BuildEnvironment
    import org.gradle.api.Named
    import org.gradle.api.tasks.Internal
    import org.gradle.api.tasks.testing.Test
    import org.gradle.process.CommandLineArgumentProvider
    
    
    class CiEnvironmentProvider(private val test: Test) : CommandLineArgumentProvider, Named {
        @Internal
        override fun getName() = "ciEnvironment"
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2K bytes
    - Viewed (0)
  7. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/provider/BuildTimestampValueSource.kt

                    runningInstallTask.get() -> "from current time because installing"
                    runningDocsTestTask.get() -> "from current time because testing docs"
                    runningOnCi.get() -> "from current time because CI"
                    else -> "from current date"
                }
            }
    
        private
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  8. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "internal-integ-testing",
        "path": "testing/internal-integ-testing",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "internal-performance-testing",
        "path": "testing/internal-performance-testing",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:57 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

    ).map { (key, value) -> os.escapeKeyValuePair(key, value) }
    
    const val individualPerformanceTestArtifactRules = """
    testing/*/build/test-results-*.zip => results
    testing/*/build/tmp/**/log.txt => failure-logs
    testing/*/build/tmp/**/profile.log => failure-logs
    testing/*/build/tmp/**/daemon-*.out.log => failure-logs
    """
    
    // to avoid pathname too long error
    fun BuildSteps.substDirOnWindows(os: Os) {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  10. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/DaemonTracker.kt

    import org.gradle.api.logging.Logging
    import org.gradle.api.services.BuildService
    import org.gradle.api.services.BuildServiceParameters
    import org.gradle.api.tasks.testing.TestDescriptor
    import org.gradle.api.tasks.testing.TestListener
    import org.gradle.api.tasks.testing.TestResult
    import org.gradle.process.ExecOperations
    import org.slf4j.LoggerFactory
    import java.util.concurrent.ConcurrentHashMap
    import javax.inject.Inject
    
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 08 12:45:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
Back to top