Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,550 for Sall (0.04 sec)

  1. platforms/native/testing-native/src/main/resources/org/gradle/nativeplatform/test/cunit/tasks/gradle_cunit_register.h

    /*
     * Called by the Gradle CUnit launcher to register all CUnit tests.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 105 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/initScripts/configurationInjection/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    tasks.register("showRepos") {
        val repositoryNames = repositories.map { it.name }
        doLast {
            println("All repos:")
            println(repositoryNames)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 206 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Android plugin 7.3.0 uses a deprecated Report.setDestination
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 160 bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/OperationGenerationId.kt

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.evaluation
    
    import java.io.Serializable
    
    
    /**
     * Represents the "generation" of a particular operation (either an addition function call or a property assignment operation).
     *
     * The order of generations is important as calls in later generations can override calls in earlier generations, but no the
     * other way around.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultCompositeFileTreeTest.groovy

        }
    
        def "can be empty"() {
            when:
            def ft = newCompositeFileTree([])
    
            then:
            ft.files.isEmpty()
        }
    
        def "contains all files"() {
            given:
            def a1 = file("a/1.txt") << "a/1"
            def b1 = file("b/1.txt") << "b/1"
            def fileResolver = TestFiles.fileCollectionFactory(testDirectory)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/InputFingerprinter.java

            /**
             * Returns all the value snapshots, including previously known ones.
             */
            ImmutableSortedMap<String, ValueSnapshot> getAllValueSnapshots();
    
            /**
             * Returns the files fingerprinted just now.
             */
            ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getFileFingerprints();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    jacoco-report-aggregation plugin] provides this ability when applied to the distribution project, such as an Android application or WAR subproject.
    
    The project in this example contains three projects: `application`, `list` and `utilities`.  All three projects apply the `jacoco` plugin, and `application` consumes both `list` and `utilities` on its implementation configuration.  The `application` subproject is the final distribution of this software project, and applies `jacoco-report-aggregation`...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildEnvironmentCrossVersionSpec.groovy

            }
    
            then:
            out.toString().contains("<${["var": "val"]}>")
        }
    
        @TargetGradleVersion(">=4.11")
        def "new Gradle versions can mutate environment on all JDK versions"() {
            given:
            toolingApi.requireDaemons() //cannot be run in embedded mode
    
            buildFile << """
                task printEnv() {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

         *
         * @param includes Inclusions
         */
        void setIncludes(List<String> includes);
    
        /**
         * List of elements that should be included in check. Names can use wildcards (* and ?).
         * If left empty, all elements will be included. Defaults to [*].
         */
        @Input
        List<String> getIncludes();
    
        /**
         * Sets list of elements that should be excluded from check.
         *
         * @param excludes Exclusions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

            given:
            startIdleDaemon()
            assert !registry.all.empty
    
            connector.connector.connect(_ as Address) >> { throw new ConnectException("Problem!", new RuntimeException("foo")) }
    
            when:
            def connection = connector.maybeConnect( { true } as ExplainingSpec)
    
            then:
            !connection
    
            registry.all.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top