Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for content_es (0.21 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileTreeTest.groovy

                getFile() >> { file }
            }
        }
    
        static class TestFileTree extends AbstractFileTree {
            List contents
            TaskDependency builtBy
    
            def TestFileTree(List files, TaskDependency dependencies = null) {
                this.contents = files
                this.builtBy = dependencies
            }
    
            String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. .github/workflows/contributor-pr.yml

      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
      build:
        name: "Compile All"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - id: setup-matrix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDo/kotlin/settings.gradle.kts

    rootProject.name = "file-contents-do"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ear/earCustomized/groovy/ear/readme.xml

    <sample>
        <para>Web application ear project with customized contents</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 88 bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

        String getDisplayName();
    
        /**
         * Returns a file representing the location of the resource. Not all resources are available as a file.
         * Note that the file returned by this method may not necessarily have the same contents as the resource. For example, the file may be compressed,
         * contain text encoded with a different encoding or represent a directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/test/resources/org/gradle/jvm/toolchain/internal/install/jdk-with-symlinks.tar.gz

    jdk-with-symlinks.tar jdk-with-symlinks/bin jdk-with-symlinks/file jdk-with-symlinks/zulu-11.jdk/Contents/Home/bin/file Something here...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:40:04 UTC 2024
    - 318 bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/TarCopyActionSpec.groovy

            TestFile expandDir = temporaryFolder.getTestDirectory().file("expanded")
            tarFile.untarTo(expandDir)
            expandDir.file("dir/file1").assertContents(equalTo("contents of dir/file1"))
            expandDir.file("file2").assertContents(equalTo("contents of file2"))
        }
    
        def "tar file contains expected permissions"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/base/distribution/kotlin/build.gradle.kts

    plugins {
        distribution
    }
    // end::use-plugin[]
    
    // tag::configure-distribution[]
    distributions {
        main {
            distributionBaseName = "someName"
            distributionClassifier = "classifier"
            contents {
                from("src/readme")
            }
        }
    }
    // end::configure-distribution[]
    
    // tag::custom-distribution[]
    distributions {
        create("custom") {
            // configure custom distribution
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/OverlappingOutputsFilterTest.groovy

        }
    
        private static FileSystemLocationSnapshot directorySnapshot(RegularFileSnapshot... contents) {
            def builder = MerkleDirectorySnapshotBuilder.sortingRequired()
            builder.enterDirectory(FileMetadata.AccessType.DIRECT, "/absolute", "absolute", INCLUDE_EMPTY_DIRS)
            contents.each {
                builder.visitLeafElement(it)
            }
            builder.leaveDirectory()
            return builder.result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

            private final List<File> sourceRoots = new ArrayList<>();
    
            @Override
            public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                cannotInferSourceRoots(contents);
            }
    
            @Override
            public void visitFileTreeBackedByFile(File file, FileTreeInternal fileTree, FileSystemMirroringFileTree sourceTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top