Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 224 for content_es (0.08 sec)

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

            value.visitContents(child -> child.visitStructure(new FileCollectionStructureVisitor() {
                @Override
                public void visitCollection(Source source, Iterable<File> contents) {
                    ImmutableSet<File> files = ImmutableSet.copyOf(contents);
                    if (!files.isEmpty()) {
                        builder.add(new FileCollectionAdapter(new ListBackedFileSet(files), taskDependencyFactory, patternSetFactory));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

    abstract class MyReportTask extends DefaultTask {
        @OutputFile
        abstract RegularFileProperty getOutputFile()
    
        @TaskAction
        def createFile() {
            outputFile.get().asFile.text = "Report contents"
        }
    }
    
    tasks.register('myReportTask', MyReportTask) {
        outputFile = layout.buildDirectory.file("reports/my-report.pdf")
    }
    
    tasks.register('archiveReportsTask') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                    @Override
                    public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                        contents.forEach(location -> taskInputs.add(location.getAbsolutePath()));
                    }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

         *
         * @return the display name
         */
        String getDisplayName();
    
        /**
         * Appends diagnostic information about the contents of this collection to the given formatter.
         */
        TreeFormatter describeContents(TreeFormatter formatter);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top