Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 145 for Here (0.13 sec)

  1. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

        if (os == Os.LINUX) {
            steps {
                script {
                    // Because we exclude tests in `distributions-integ-tests` below, `@Flaky` won't work in that subproject.
                    // Here we check the existence of `@Flaky` annotation to make sure nobody use that annotation in `distributions-integ-tests` subproject.
                    name = "MAKE_SURE_NO_@FLAKY_IN_DISTRIBUTIONS_INTEG_TESTS"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginAndroidSmokeTest.groovy

            then:
            result.task(':app:testDebugUnitTestCoverage').outcome == SUCCESS
    
            where:
    // To run a specific combination, set the values here, uncomment the following four lines
    //  and comment out the lines coming after
    //        kotlinPluginVersion = TestedVersions.kotlin.versions.last()
    //        androidPluginVersion = TestedVersions.androidGradle.versions.last()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/release/notes-template.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/extensions/MultiTestLifecycleSpec.groovy

            expect:
            false
        }
    
        static class SampleRule extends ExternalResource {
            private final String name
    
            // We add a constructor parameter here, so this class can't be instantiated by the default constructor.
            // This way we can test if the class has been initialized correctly by Spock.
            SampleRule(String name) {
                this.name = name
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/notes.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

         */
        <S> S fromMutableState(Function<? super T, ? extends S> factory);
    
        /**
         * DO NOT USE THIS METHOD. It is here to provide some specific backwards compatibility.
         */
        <S> S forceAccessToMutableState(Function<? super T, ? extends S> factory);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    // limitations under the License.
    
    [[compatibility]]
    = Compatibility Matrix
    
    The sections below describe Gradle's compatibility with several integrations.
    Versions not listed here may or may not work.
    
    == Java
    A Java version between 8 and 22 is required to execute Gradle.
    Java 23 and later versions are not yet supported.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskTransitiveSubclassingBinaryCompatibilityCrossVersionSpec.groovy

            file("plugin/src/main/groovy/CustomBaseJavaExec.groovy") << """
                import org.gradle.api.tasks.JavaExec
    
                class CustomBaseJavaExec extends JavaExec {
                    // no setArgs overridden here
                }
            """
            file("settings.gradle") << """
                pluginManagement {
                    repositories {
                        maven {
                            url file('plugin/build/repo')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

                    }
                }
            """
            actualProjectDir.file("settings.gradle").createFile()
            executer.beforeExecute {
                // Use `new File` here to avoid canonicalization of the path
                def symlinkedProjectDir = new File(symlink, "projectDir")
                assert symlinkedProjectDir.absolutePath != actualProjectDir.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Click on the _"Configuration"_ tab to break this stage into component parts,
    exposing the cause of the slowness.
    
    image::performance/build-scan-configuration-breakdown.png[title="Build scan configuration breakdown"]
    
    Here you can see the scripts and plugins applied to the project in descending order of how long they took to apply.
    The slowest plugin and script applications are good candidates for optimization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top