Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for Here (0.03 sec)

  1. testing/internal-testing/src/main/resources/valid-precondition-combinations.csv

    # See RequiresExtension.groovy and the "predicate-tester" project to learn more about how this file is used.
    # Note: Every class name here is implicitly prefixed with the "org.gradle.test.preconditions" package.
    
    PluginTestPreconditions$ShellcheckAvailable
    SigningTestPreconditions$GpgAvailable
    
    IntegTestPreconditions$DifferentJdksFromMultipleVendors,IntegTestPreconditions$JavaHomeWithDifferentVersionAvailable
    
    UnitTestPreconditions$CanInstallExecutable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

            TestProjects.validateTestProject(testProject)
    
            def results = newResult()
    
            try {
                runAllSpecifications(results)
            } catch (Exception e) {
                // Print the exception here, so it is reported even when the reporting fails
                e.printStackTrace()
                throw e
            } finally {
                results.endTime = clock.getCurrentTime()
                reporter.report(results)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainerFactory.java

                    );
    
                    ModelNode modelNode = modelRegistry.atStateOrLater(TaskContainerInternal.MODEL_PATH, ModelNode.State.Created);
    
                    // TODO LD use something more stable than a cast here
                    MutableModelNode mutableModelNode = (MutableModelNode) modelNode;
    
                    // Add tasks created through rules to the actual task container
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    - In the Groovy DSL, the `Settings` object documentation is found link:{groovyDslPath}/org.gradle.api.initialization.Settings.html[here].
    - In the Kotlin DSL, the `Settings` object documentation is found link:{kotlinDslPath}/gradle/org.gradle.api.initialization/-settings/index.html[here].
    
    Many top-level properties and blocks in a settings script are part of the Settings API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    They are suitable for complex build logic that needs to be shared across projects, builds, and teams.
    You can also write them in Scala or Groovy but that is not recommended.
    
    Here is a breakdown of all options for implementing Gradle plugins:
    
    [cols="~,~,~,~,~"]
    |===
    |*#* |*Using:* |*Type:* |*The Plugin is:* |*Recommended?*
    
    |1
    |Kotlin DSL
    |Script plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

        }
    
        def "reports task origin for lazily realized tasks"() {
            given:
            buildFile << """
                tasks.register('lazyTask') {
                    doLast { println 'nothing to see here' }
                }
            """
    
            when:
            runBuild('lazyTask')
    
            then:
            task(':lazyTask').originPlugin.displayName == "build.gradle"
        }
    
        @TargetGradleVersion('>=3.0 <5.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                    "validateExternalPlugins",
                    "--continue",
                    *extraParameters] as String[])
                validation.ignoreDeprecationWarnings("We are only checking type validation problems here")
    
                def result
                if (failsValidation) {
                    result = validation.buildAndFail()
                } else {
                    result = validation.build()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. build-logic-commons/build-platform/build.gradle.kts

    import org.gradle.util.internal.VersionNumber
    
    plugins {
        `java-platform`
    }
    
    group = "gradlebuild"
    
    description = "Provides a platform that constrains versions of external dependencies used by Gradle"
    
    // Here you should declare versions which should be shared by the different modules of buildSrc itself
    val javaParserVersion = "3.18.0"
    val groovyVersion = GroovySystem.getVersion()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

    import org.gradle.tooling.model.GradleProject
    
    class PassingCommandLineArgumentsCrossVersionSpec extends ToolingApiSpecification {
    
    //    We don't want to validate *all* command line options here, just enough to make sure passing through works.
    
        def "understands project properties for building model"() {
            given:
            toolingApi.verboseLogging = false //sanity check, see GRADLE-2226
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

            return new OriginMetadata(
                buildInvocationScopeId.asString(),
                buildCacheKey,
                originExecutionTime
            );
        }
    
        /*
         * This operation is only used here temporarily. Should be replaced with a more stable operation in the long term.
         */
        public interface Operation extends BuildOperationType<Operation.Details, Operation.Result> {
            interface Details {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top