Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 135 for content_es (0.11 sec)

  1. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    tree = fileTree("dir" to "src", "includes" to listOf("**/*.java", "**/*.xml"))
    tree = fileTree("dir" to "src", "include" to "**/*.java", "exclude" to "**/*test*/**")
    // end::define[]
    
    // tag::use[]
    // Iterate over the contents of a tree
    tree.forEach{ file: File ->
        println(file)
    }
    
    // Filter a tree
    val filtered: FileTree = tree.matching {
        include("org/gradle/api/**")
    }
    
    // Add trees together
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/resources/FileCollectionBackedTarArchiveTextResourceTest.groovy

        def setup() {
            def archive = project.file("archive.tar.gz")
            def archiveEntry = project.file("archive/path/to/text")
            archiveEntry.parentFile.mkdirs()
            archiveEntry.text = "contents"
            project.ant.tar(basedir: project.file("archive"), destfile: archive, compression: "gzip")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FileCollectionFingerprint.java

    import com.google.common.collect.ImmutableMultimap;
    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.internal.hash.HashCode;
    
    import java.util.Map;
    
    /**
     * An immutable snapshot of some aspects of the contents and meta-data of a collection of files or directories.
     */
    public interface FileCollectionFingerprint {
    
        /**
         * The underlying fingerprints indexed by absolute path.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    Metadata to generate a deployment descriptor file, e.g. `application.xml`. _Default value: A deployment descriptor with sensible defaults named `application.xml`_. If this file already exists in the `appDirName/META-INF` then the existing file contents will be used and the explicit configuration in the `ear.deploymentDescriptor` will be ignored.
    
    `generateDeploymentDescriptor` — `Boolean`::
    Specifies if deploymentDescriptor should be generated. _Default value: `true`_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultDirectoryWalker.java

                Files.walkFileTree(rootDir, EnumSet.of(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, pathVisitor);
            } catch (IOException e) {
                throw new GradleException(String.format("Could not list contents of directory '%s'.", rootDir), e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/samples/SamplesScalaCustomizedLayoutIntegrationTest.groovy

            // Check tests have run
            def result = new DefaultTestExecutionResult(projectDir)
            result.assertTestClassesExecuted('org.gradle.sample.PersonSpec')
    
            // Check contents of Jar
            TestFile jarContents = file('jar')
            projectDir.file("build/libs/customized-layout-1.0.jar").unzipTo(jarContents)
            jarContents.assertHasDescendants(
                    'META-INF/MANIFEST.MF',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        }
    
        private void addTOC(Document document) {
            Element tocSection = document.body().select("section.topic").first().before("<section class='table-of-contents'/>").previousElementSibling();
            tocSection.append("<h2>Table Of Contents</h2>");
            Element toc = tocSection.append("<ul class='toc'/>").children().last();
    
            Elements h23elements = document.select("h2,h3");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/file/FileCollectionSymlinkTest.groovy

        @Shared TestFile file = baseDir.file("file")
        @Shared TestFile symlink = baseDir.file("symlink")
        @Shared TestFile symlinked = baseDir.file("symlinked")
    
        def setupSpec() {
            file.text = 'some contents'
            symlinked.text = 'target of symlink'
            symlink.createLink(symlinked)
        }
    
        def "#desc can handle symlinks"() {
            expect:
            fileCollection.contains(file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to an input property to specify that line endings should be normalized
     * when snapshotting inputs. Two files with the same contents but different line endings
     * will be considered equivalent.
     *
     * Line ending normalization is only supported with ASCII encoding and its supersets (i.e.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactVisitor.java

    import org.gradle.api.internal.file.FileCollectionStructureVisitor;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.component.external.model.ImmutableCapabilities;
    
    /**
     * A visitor over the contents of a {@link ResolvedArtifactSet}. A {@link ResolvedArtifactSet} may contain zero or more sets of files, each set containing zero or more artifacts.
     */
    public interface ArtifactVisitor {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top