Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for docsTest (0.14 sec)

  1. build-logic/lifecycle/src/main/kotlin/gradlebuild.lifecycle.gradle.kts

    val allVersionsCrossVersionTest = "allVersionsCrossVersionTest"
    
    val allVersionsIntegMultiVersionTest = "allVersionsIntegMultiVersionTest"
    
    val soakTest = "soakTest"
    
    val smokeTest = "smokeTest"
    
    val docsTest = "docs:docsTest"
    
    setupTimeoutMonitorOnCI()
    setupGlobalState()
    
    tasks.registerDistributionsPromotionTasks()
    
    tasks.registerEarlyFeedbackRootLifecycleTasks()
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:39:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. build.gradle.kts

    }
    
    description = "Adaptable, fast automation for all"
    
    dependencyAnalysis {
        issues {
            all {
                ignoreSourceSet("archTest", "crossVersionTest", "docsTest", "integTest", "jmh", "peformanceTest", "smokeTest", "testInterceptors", "testFixtures", "smokeIdeTest")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

            excludes.add("README")
        }
    }
    
    tasks.named("quickTest") {
        dependsOn("checkDeadInternalLinks")
    }
    
    // TODO add some kind of test precondition support in sample test conf
    tasks.named("docsTest") { task ->
        maxParallelForks = 2
        // The org.gradle.samples plugin uses Exemplar to execute integration tests on the samples.
        // Exemplar doesn't know about that it's running in the context of the gradle/gradle build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. platforms/documentation/docs/README.md

    After the exemplar examples are installed, `docs:docsTest` will start testing them (see [`BaseSamplesTest`](https://github.com/gradle/gradle/blob/a503d4a36c53e43a8857da3115fa744612c6ad36/subprojects/docs/src/docsTest/java/org/gradle/docs/samples/BaseSamplesTest.java#L66)).
    
    ### Code samples
    
    To run the samples tests:
    ```
    ./gradlew :docs:docsTest --tests "org.gradle.docs.samples.*.*"
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                    TestCoverage(21, TestType.isolatedProjects, Os.LINUX, JvmCategory.MIN_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE)
                ),
                docsTests = listOf(
                    DocsTestCoverage(Os.LINUX, JvmCategory.MAX_VERSION, listOf(CONFIG_CACHE_ENABLED, CONFIG_CACHE_DISABLED)),
                    DocsTestCoverage(Os.WINDOWS, JvmCategory.MAX_VERSION, listOf(CONFIG_CACHE_DISABLED)),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

        ```
    
        See
        [TensorFlow Builds](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/ci_build)
        for details.
    
    #### Running doctest for testable docstring
    
    There are two ways to test the code in the docstring locally:
    
    1.  If you are only changing the docstring of a class/function/method, then you
        can test it by passing that file's path to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top