Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 215 for Sall (0.08 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

                    // has a chance to isolate the upstream transform
                    // TODO - ensure all transform parameters required by a transform worker are isolated prior to starting the worker
                    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    public MyTask() {
                        text = getProject().provider(new Callable<String>() {
                            @Override
                            public String call() throws Exception {
                                return "Hello World!";
                            }
                        });
                        file = getProject().getObjects().property(File.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            then:
            operations.all(ResolveConfigurationDependenciesBuildOperationType, { it.details.configurationName.endsWith('Classpath') }).result.every {
                it.requestedAttributes.find { it.name == 'org.gradle.dependency.bundling' }.value == 'external'
                it.requestedAttributes.find { it.name == 'org.gradle.jvm.version' }.value
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    The `greetingFile` property is used to specify the file path for the greeting:
    
    ====
    include::sample[dir="snippets/tasks/customTaskWithFileProperty/kotlin",files="build.gradle.kts[tags=all]"]
    include::sample[dir="snippets/tasks/customTaskWithFileProperty/groovy",files="build.gradle[tags=all]"]
    ====
    
    ----
    $ gradle -q sayGreeting
    include::{snippetsPath}/tasks/customTaskWithFileProperty/tests/lazyFileProperties.out[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            val allDistribution = bucket("${prefix}TestAllDistribution", "Declare a all distribution to be used by tests - useful for testing the final distribution that is published")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

            this.port = port;
        }
    
        /**
         * Path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
        @Nullable
        @Optional
        @LocalState
        public File getClassDumpDir() {
            return classDumpDir;
        }
    
        /**
         * Sets path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                include "a", "b", "c", "d"
            """
            buildFile << """
                ${server.callFromBuild('root-build-script')}
                task hello {
                    dependsOn {
                        // call during task graph calculation
                        ${server.callFromBuild('task-graph')}
                        null
                    }
                    doFirst {
                        ${server.callFromBuild('task1')}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

     *
     * <p>The aim is to create only a single instance of this type per project and reuse that for all resolution that happens in a build tree. This isn't quite the case yet.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    jvm arguments::
    A daemon is compatible if it has set all the JVM arguments requested. +
    Note that a daemon is compatible if it has additional JVM arguments beyond those requested (except for those treated especially, such as heap settings, assertions, debug, etc.).
    
    system properties::
    A daemon is considered compatible if it has set all the system properties requested with the same values. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/README.md

    - The code samples under `platforms/documentation/docs/src/samples`. We'll call them "code samples."
    - The test unit used by [exemplar framework](https://github.com/gradle/exemplar/blob/9c4415f6237d7d86329fdbb32d80a2f7dd8ae0a9/samples-discovery/src/main/java/org/gradle/exemplar/model/Sample.java#L21). We'll call them "exemplar sample".
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top