Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for content_es (0.14 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            when:
            run 'copy'
    
            then:
            result.assertTasksSkipped(":copy")
        }
    
        def "handles gzip compressed tars"() {
            given:
            TestFile tar = file('tar-contents')
            tar.create {
                someDir {
                    file '1.txt'
                    file '2.txt'
                }
            }
            tar.tgzTo(file('test.tgz'))
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * }
         * </pre>
         * <p>The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.</p>
         *
         * @param paths The contents of the file collection. Evaluated as per {@link #files(Object...)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      if (::testing::internal::AlwaysTrue()) { \
         GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } else \
        ::testing::Message()
    
    // A class representing the parsed contents of the
    // --gtest_internal_run_death_test flag, as it existed when
    // RUN_ALL_TESTS was called.
    class InternalRunDeathTestFlag {
     public:
      InternalRunDeathTestFlag(const std::string& a_file,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

    package org.gradle.internal.cc.impl
    
    import spock.lang.Issue
    
    class ConfigurationCacheFileCollectionIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def "directory tree is treated as build input when its contents are queried during configuration"() {
            buildFile << """
                task report {
                    def tree = fileTree("src")
                    def file1 = file("src/file1")
                    def result = $expression
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

        val stateType: StateType
        val stateFile: ConfigurationCacheStateStore.StateFile
        fun outputStream(): OutputStream
        fun inputStream(): InputStream
        fun delete()
    
        // Replace the contents of this state file, by moving the given file to the location of this state file
        fun moveFrom(file: File)
        fun stateFileForIncludedBuild(build: BuildDefinition): ConfigurationCacheStateFile
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top