Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 135 for content_es (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionTest.groovy

            def collection = new TestCompositeFileCollection(source1, source2)
    
            expect:
            collection.getFiles() as List == [file1, file2, file3]
        }
    
        def "contents track contents of source collections"() {
            def source1 = new TestFileCollection(file1)
            def source2 = new TestFileCollection(file2, file3)
            def collection = new TestCompositeFileCollection(source1, source2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RootTrackingFileSystemSnapshotHierarchyVisitor.java

    package org.gradle.internal.snapshot;
    
    public abstract class RootTrackingFileSystemSnapshotHierarchyVisitor implements FileSystemSnapshotHierarchyVisitor {
        private int treeDepth;
    
        /**
         * Called before visiting the contents of a directory.
         */
        public void enterDirectory(DirectorySnapshot directorySnapshot, boolean isRoot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesGroovyCustomizedLayoutIntegrationTest.groovy

            then:
            // Check tests have run
            def result = new DefaultTestExecutionResult(groovyProjectDir)
            result.assertTestClassesExecuted('org.gradle.PersonTest')
    
            and:
            // Check contents of jar
            TestFile tmpDir = file('jarContents')
            groovyProjectDir.file('build/libs/customized-layout.jar').unzipTo(tmpDir)
            tmpDir.assertHasDescendants(
                'META-INF/MANIFEST.MF',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

    import java.util.jar.Manifest
    import java.util.zip.ZipEntry
    
    class JarUtils {
        static def jarWithContents(Map<String, String> contents) {
            def out = new ByteArrayOutputStream()
            def jarOut = new JarOutputStream(out)
            try {
                contents.each { file, fileContents ->
                    def zipEntry = new ZipEntry(file)
                    zipEntry.setTime(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/MinimalFileTree.java

             */
            void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree);
    
            /**
             * Visits a file tree whose content is generated from the contents of a file.
             */
            void visitFileTreeBackedByFile(File file, FileTreeInternal fileTree, FileSystemMirroringFileTree sourceTree);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

    /**
     * Provides access to test resources for integration testing. Looks for the following directory in the test classpath:
     * <ul> <li>${testClass}/shared</li> <li>${testClass}/${testName}</li> </ul>
     *
     * Copies the contents of each such directory into a temporary directory for the test to use.
     */
    public class TestResources implements MethodRule {
        private final Logger logger = LoggerFactory.getLogger(TestResources.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

     *
     * <p>You can use {@link CacheBuilder#withInitializer(java.util.function.Consumer)} to provide an action to initialize the contents
     * of the cache, for building a read-only cache. An exclusive lock is held by this process while the initializer is running.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top