Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 485 for Here (0.04 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. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ExtractPrecompiledScriptPluginPluginsTest.kt

            extractPluginsFrom(
                // the `buildscript` block is not really valid in precompiled script plugins (causes a runtime error)
                // but still worth testing here
                scriptPlugin(
                    "buildscript-and-plugins.gradle.kts",
                    """
                    buildscript {}
                    plugins { java }
                    """
                )
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintFactory.java

        /**
         * Create a {@link DependencyConstraint} from the <code>"<i>group</i>:<i>name</i>:<i>version</i>"</code> notation.
         *
         * <p>
         * Note that no classifier or extension is accepted here.
         * </p>
         *
         * @param dependencyConstraintNotation the dependency constraint notation
         * @return the new dependency constraint
         * @since 8.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/LocaleSupportDaemonIntegrationTest.groovy

            outputContains("GradleVersion: Gradle ${overrideVersion}\ndefaultLocale")
    
            and:
            ranWithLocale(locale)
    
            where:
            // We want to test with both the development and release version here because the development version
            // (with timestamp) causes the Java Calendar object to initialize before log initialization, which can
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/build.gradle

        def buildDirectory = layout.buildDirectory
        def objectFactory = project.objects
        def injected = objectFactory.newInstance(Injected)
    
    // tag::ad-hoc-task[]
        doLast {
            // Process the templates here
    // end::ad-hoc-task[]
            injected.fs.copy {
                into buildDirectory.dir('genOutput2')
                from objectFactory.fileTree().from('src/templates')
                expand([year: '2013'])
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultModuleComponentIdentifier.java

            assert version != null : "version cannot be null";
            this.moduleIdentifier = module;
            this.version = version;
            // Do NOT change the order of members used in hash code here, it's been empirically
            // tested to reduce the number of collisions on a large dependency graph (performance test)
            this.hashCode = 31 * version.hashCode() + module.hashCode();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorProblemsApiIntegrationTest.groovy

        def buildOperationIdFile = file('build-operation-id.txt')
    
        def forkingOptions(Jvm javaVersion) {
            return """
                options.fork = true
                // We don't use toolchains here for consistency with the rest of the test suite
                options.forkOptions.javaHome = file('${javaVersion.javaHome}')
            """
        }
    
        def setupBuild(Jvm javaVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. 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)
Back to top