Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for groovyDsl (0.32 sec)

  1. platforms/software/resources-s3/build.gradle.kts

        testImplementation(testFixtures(project(":maven")))
    
        integTestImplementation(project(":logging"))
        integTestImplementation(libs.commonsIo)
        integTestImplementation(libs.groovyXml)
        integTestImplementation(libs.littleproxy)
        integTestImplementation(libs.jetty)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    
    dependencyAnalysis {
        issues {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/build.gradle.kts

        testFixturesImplementation(project(":core"))
        testFixturesImplementation(project(":internal-integ-testing"))
    
        testFixturesImplementation(libs.jsoup)
        testFixturesImplementation(libs.groovyXml)
    
        testImplementation(project(":internal-testing"))
        testImplementation(project(":resources"))
        testImplementation(project(":internal-integ-testing"))
        testImplementation(project(":language-java"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/build.gradle.kts

        integTestImplementation(libs.jgit)
    
        testFixturesApi(testFixtures(project(":ide")))
        testFixturesImplementation(libs.plist)
        testFixturesImplementation(libs.guava)
        testFixturesImplementation(libs.groovyXml)
        testFixturesImplementation(testFixtures(project(":ide")))
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/build.gradle.kts

        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":build-process-services"))
    
        api(libs.asm)
        api(libs.groovy)
        api(libs.groovyXml)
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(projects.concurrent)
        implementation(project(":file-temp"))
        implementation(project(":functional"))
        implementation(project(":logging-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute1StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

        @Override
        def indyModes() {
            return [true]
        }
    
        @Override
        def testCases() {
            // static import calls (are handled differently by the dynamic Groovy's codegen)
            return [
                // varInitializer | processCreator | expectedPwdSuffix | expectedEnvVar
                [fromString(), "execute(command)", "", ""],
                [fromGroovyString(), "execute(command)", "", ""],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
         * Groovy's {@link groovy.text.SimpleTemplateEngine}. This means you can use simple property references, such as
         * <code>$property</code> or <code>${property}</code> in the file. You can also include arbitrary Groovy code in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/build.gradle.kts

        testFixturesImplementation(project(":snapshots"))
        testFixturesImplementation(libs.guava)
        testFixturesImplementation(libs.nativePlatform)
        testFixturesImplementation(libs.groovyXml)
        testFixturesImplementation(libs.commonsLang)
        testFixturesImplementation(libs.commonsIo)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":messaging")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

            this.scriptFile = scriptFile
        }
    
        /**
         * Returns a command line elements that can be used to start this script.
         * The resulting list can be used as an argument for the {@link ProcessBuilder} or Groovy's {@code execute} method.
         * The first element of the list is the command interpreter (sh or cmd depending on the platform).
         * The list also contains an absolute path to the script (which may contain spaces).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/trace/CustomOperationTraceSerialization.java

    /**
     * Can be implemented by an operation details, result or progress object
     * to provide a custom form for serializing into the trace files.
     *
     * By default, objects are serialized using Groovy's reflective JSON serializer.
     */
    public interface CustomOperationTraceSerialization {
    
        Object getCustomOperationTraceSerializableModel();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

         * which themselves are checked for annotations, or some conditional
         * behaviour where capturing the type itself as input is important.
         * <p>
         * Types of the Java SE API, types of the Kotlin stdlib, and Groovy's
         * GString type are not supported because they meet neither of those
         * requirements.
         *
         * @param validationContext the validation context
         * @param propertyName the name of the property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top