Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for groovyDsl (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/jvm/code-quality/build.gradle.kts

        implementation(project(":logging"))
        implementation(project(":native"))
        implementation(project(":plugins-groovy"))
        compileOnly(project(":internal-instrumentation-api"))
    
        implementation(libs.groovyXml)
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        runtimeOnly(project(":language-jvm"))
    
        testImplementation(project(":file-collections"))
        testImplementation(project(":plugins-java"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/model/ReportNode.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.reporting.model
    /**
     *
     * Represents a node of a hierarchical report
     * Extends from groovy's {@code groovy.util.Node} and hence GPath expressions can be used to search and identify report nodes nd values.
     *
     * See https://www.groovy-lang.org/processing-xml.html#_gpath
     *
     * E.g:
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 06 16:25:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

     * <p>
     * The default implementations used by this task use <a href="https://docs.groovy-lang.org/latest/html/documentation/template-engines.html#_simpletemplateengine">Groovy's SimpleTemplateEngine</a>
     * to parse the template, with the following variables available:
     * <ul>
     * <li>{@code applicationName}</li>
     * <li>{@code optsEnvironmentVar}</li>
     * <li>{@code exitEnvironmentVar}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/build.gradle.kts

        testImplementation(project(":diagnostics"))
        testImplementation(project(":process-services"))
        testImplementation(libs.asmUtil)
        testImplementation(libs.commonsHttpclient)
        testImplementation(libs.groovyXml)
        testImplementation(libs.jsoup)
        testImplementation(testFixtures(projects.serialization))
        testImplementation(testFixtures(project(":base-services")))
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.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, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/build.gradle.kts

        api(testFixtures(project(":core"))) {
            because("HttpServer leaks PortAllocator to spock AST transformer")
        }
    
        api(libs.gson)
        api(libs.groovy)
        api(libs.groovyXml)
        api(libs.guava)
        api(libs.hamcrestCore)
        api(libs.hamcrest)
        api(libs.jettyWebApp) {
            because("Part of the public API via HttpServer")
        }
        api(libs.jansi)
        api(libs.jettySecurity)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top