Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 224 for content_es (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    The method call returns the Ant data type, which you can use directly in your build script.
    In the following example, we create an Ant `path` object, then iterate over the contents of it:
    
    ====
    include::sample[dir="snippets/ant/useAntType/kotlin",files="build.gradle.kts"]
    include::sample[dir="snippets/ant/useAntType/groovy",files="build.gradle"]
    ====
    
    [[sec:using_custom_ant_tasks]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/VersionStrategy.java

        /**
         * A single cache instance shared by all Gradle versions. It is the caller's responsibility to make sure that this is shared only with
         * those versions of Gradle that are compatible with the cache implementation and contents.
         */
        SharedCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/LazilyInitializedFileCollection.java

    import org.gradle.api.internal.tasks.DefaultTaskDependencyFactory;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    
    import java.util.function.Consumer;
    
    /**
     * A {@link FileCollection} whose contents is created lazily.
     */
    public abstract class LazilyInitializedFileCollection extends CompositeFileCollection {
    
        // Used in a third-party plugin Freefair AspectJ:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    [[changes_5.6]]
    == Upgrading from 5.5 and earlier
    
    === Deprecations
    
    ==== Changing the contents of `ConfigurableFileCollection` task properties after task starts execution
    
    When a task property has type `ConfigurableFileCollection`, then the file collection referenced by the property will ignore changes made to the contents of the collection once the task starts execution.
    This has two benefits.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

        }
    
        private void reportAccess(Object key, @Nullable Object value) {
            listener.onAccess(key, value);
        }
    
        private void reportAggregatingAccess() {
            // Mark all map contents as inputs if some aggregating access is used.
            delegate.forEach(this::reportAccess);
        }
    
        private void reportChange(Object key, Object value) {
            listener.onChange(key, value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/EmptyFileTextResource.java

        }
    
        @Override
        public boolean getHasEmptyContent() {
            return true;
        }
    
        @Override
        public File getFile() {
            // Returns null as there is no file that contains this resource's contents,
            // however {@link ResourceLocation#getFile()} would still return the given `sourceFile`
            return null;
        }
    
        @Override
        public Charset getCharset() {
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/BufferingStyledTextOutput.java

        private final List<Action<StyledTextOutput>> events = new ArrayList<Action<StyledTextOutput>>();
        private boolean hasContent;
    
        /**
         * Writes the buffered contents of this output to the given target, and clears the buffer.
         */
        public void writeTo(StyledTextOutput output) {
            for (Action<StyledTextOutput> event : events) {
                event.execute(output);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/FileCollectionFingerprinter.java

        /**
         * The type used to refer to this fingerprinter in the {@link FileCollectionFingerprinterRegistry}.
         */
        FileNormalizer getNormalizer();
    
        /**
         * Creates a fingerprint of the contents of the given collection.
         */
        CurrentFileCollectionFingerprint fingerprint(FileCollection files);
    
        /**
         * Creates a fingerprint from the snapshot of a file collection.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizedExecutionPlan.java

            }
        };
    
        /**
         * Returns this plan as a {@link WorkSource} ready for execution.
         */
        WorkSource<Node> asWorkSource();
    
        /**
         * Returns the immutable contents of this plan.
         */
        QueryableExecutionPlan getContents();
    
        /**
         * Overridden to remove IOException.
         */
        @Override
        void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/resources/FileCollectionBackedZipArchiveTextResourceTest.groovy

        def setup() {
            def archive = project.file("archive.zip")
            def archiveEntry = project.file("archive/path/to/text")
            archiveEntry.parentFile.mkdirs()
            archiveEntry.text = "contents"
            project.ant.zip(basedir: project.file("archive"), destfile: archive)
            resource = new FileCollectionBackedArchiveTextResource(project.services.get(FileOperations), project.services.get(TaskDependencyFactory),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top