Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for content_es (0.1 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

         * point to the binary test results directory generated by a {@link Test} task instance.</li>
         *
         * <li>An {@link Iterable}. The contents of the iterable are converted recursively.</li>
         *
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    If you use the `@Input` annotation on a file-based property, Gradle wouldn't consider the file contents, or the directory contents, as inputs, as you might expect.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                    }
                    false
                }
                else -> {
                    true
                }
            }
    
            override fun visitCollection(source: FileCollectionInternal.Source, contents: Iterable<File>) =
                throw UnsupportedOperationException()
    
            override fun visitFileTree(root: File, patterns: PatternSet, fileTree: FileTreeInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

        /**
         * Adds an action to be applied to each file as it is about to be copied into its destination. The action can change
         * the destination path of the file, filter the contents of the file, or exclude the file from the result entirely.
         * Actions are executed in the order added, and are inherited from the parent spec.
         *
         * @param action The action to execute.
         * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            where:
            type                      | creationCommand
            "empty directory"         | { TestFile output -> output.createDir() }
            "directory with contents" | { TestFile output ->
                output.create {
                    file("first-file").text = "leftover file"
                    file("second-file").text = "leftover file"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    ----
    
    For each container property, Gradle automatically adds a block to the Groovy and Kotlin DSL that you can use to configure the contents of the container:
    
    ====
    [source.multi-language-sample,kotlin]
    .build.gradle.kts
    ----
    include::{snippetsPath}/plugins/namedDomainObjectContainer/kotlin/build.gradle.kts[]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

                return this;
            }
            try {
                AnsiConsole console = interpretAnsiChars();
                StringBuilder result = new StringBuilder();
                console.contents(token -> {
                    if (token instanceof Text) {
                        result.append(((Text) token).getText());
                    } else if (token instanceof NewLine) {
                        result.append("\n");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

     *     the collecting supplier will wrap a {@link Collector} that lazily represents the yet-to-be realized contents of the collection - see below for details</li>
     * </ul>
     *
     * <h3>Collectors</h3>
     * <p>
     *     While a collection property's contents are being built up, its value is represented by a {@link CollectingSupplier}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    Create a file, `fabric.gradle`, in the module where you apply the `io.fabric` plugin. This file (known as a script plugin), should have the following contents:
    
    .fabric.gradle
    ----
    include::{snippetsPath}/buildCache/caching-android-projects/groovy/build.gradle[tags=fabricGroovy]
    ----
    
    And then, in the module’s `build.gradle.kts` file, apply this script plugin:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            )
    
            when:
            run("${language.compileTaskName}")
            impl.recompiledClasses("Base", "Dependant")
    
            impl.snapshot()
    
            // Change the contents of Dependant to force recompile. Compile will only
            // pass if compiling against impl's Base
            file("impl/src/main/${language.name}/Dependant.${language.name}") << "// Recompile me please"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top