Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 212 for content_es (0.17 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/JavaApplication.java

         */
        String getExecutableDir();
    
        /**
         * Directory to place executables in
         */
        void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
         * Use this {@link org.gradle.api.file.CopySpec} to include extra files/resource in the application distribution.
         * <pre class='autoTested'>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Allows lazy access to the contents of the given file.
         *
         * When the file contents are read at configuration time the file is automatically considered
         * as an input to the configuration model.
         *
         * @param file the file whose contents to read.
         * @return an interface that allows lazy access to the contents of the given file.
         *
         * @see FileContents#getAsText()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

                    @Output${files ? "Files" : "Directories"} FileCollection out
    
                    @TaskAction def exec() {
                        out.each { it${files ? ".text = 'data' + it.name" : ".mkdirs(); new File(it, 'contents').text = 'data' + it.name"} }
                    }
                }
    
                task myTask(type: MyTask) {
                    if (providers.gradleProperty("reverse").isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            ], [
                "old-1/one": fingerprint("one"),
                "old-2/one": fingerprint("one"),
                "old/two": fingerprint("two")
            ]) == []
        }
    
        def "detects no change when swapping contents between files with same normalized path (NormalizedPathFingerprintCompareStrategy)"() {
            expect:
            changes(NORMALIZED, [
                "a/input": fingerprint("input", 2),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

            private final byte[] markerBody;
    
            MarkerResource(byte[] markerBody) {
                this.markerBody = markerBody;
            }
    
            /**
             * Reads the contents of the MarkerResource and returns the appropriate constant.
             *
             * @param in the stream to read from
             * @return the corresponding marker resource
             * @throws IOException if reading fails
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    This is possible in the following cases:
    
    - dynamic dependency versions are used (version ranges, `latest.release`, `1.+`, ...)
    - or _changing_ versions are used (SNAPSHOTs, fixed version with changing contents, ...)
    
    The recommended way to deal with dynamic versions is to use <<dependency_locking.adoc#dependency-locking,dependency locking>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDont/groovy/settings.gradle

    rootProject.name = 'file-contents-dont'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/CleanArchiveIntegrationTest.groovy

    import spock.lang.Issue
    
    @Issue("https://github.com/gradle/gradle/issues/25752")
    class CleanArchiveIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            file("contents/hello.txt") << "hello"
            file("contents").zipTo(file("hello.zip"))
        }
    
        def "clean after unzipping file to cache in task"() {
            buildFile << """
                plugins {
                    id 'lifecycle-base'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/webApplication/customized/readme.xml

    <sample>
        <para>Web application with customized WAR contents.</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 81 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    It synchronizes the contents of a directory with its source.
    
    This can be useful for doing things such as installing your application, creating an exploded copy of your archives, or maintaining a copy of the project's dependencies.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top