Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for content_es (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Allows lazy access to the contents of the given file.
         *
         * When the file contents are read at configuration time the file is automatically considered
         * as an input to the configuration model.
         *
         * @param file the file whose contents to read.
         * @return an interface that allows lazy access to the contents of the given file.
         *
         * @see FileContents#getAsText()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

                    @Output${files ? "Files" : "Directories"} FileCollection out
    
                    @TaskAction def exec() {
                        out.each { it${files ? ".text = 'data' + it.name" : ".mkdirs(); new File(it, 'contents').text = 'data' + it.name"} }
                    }
                }
    
                task myTask(type: MyTask) {
                    if (providers.gradleProperty("reverse").isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            ], [
                "old-1/one": fingerprint("one"),
                "old-2/one": fingerprint("one"),
                "old/two": fingerprint("two")
            ]) == []
        }
    
        def "detects no change when swapping contents between files with same normalized path (NormalizedPathFingerprintCompareStrategy)"() {
            expect:
            changes(NORMALIZED, [
                "a/input": fingerprint("input", 2),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            }
    
            project.pmd {
                sourceSets = [project.sourceSets.main]
                ruleSets = ["java-braces", "java-unusedcode"]
                ruleSetConfig = project.resources.text.fromString("ruleset contents")
                ruleSetFiles = project.getLayout().files("my-ruleset.xml")
                reportsDir = project.file("pmd-reports")
                ignoreFailures = true
                maxFailures = 17
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

                protected void visitChildren(Consumer<FileCollectionInternal> visitor) {
                    visitor.accept(TestFiles.fileCollectionFactory().fixed(files))
                }
            }
        }
    
        def "visits contents on each query"() {
            def visited = 0;
            def collection = new TestCollection() {
                @Override
                protected void visitChildren(Consumer<FileCollectionInternal> visitor) {
                    visited++
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/local/LocalFileStandInExternalResourceTest.groovy

    class LocalFileStandInExternalResourceTest extends Specification {
        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def "can apply ContentAndMetadataAction to file contents"() {
            def file = tmpDir.createFile("content")
            file.text = "1234"
    
            expect:
            def resource = new LocalFileStandInExternalResource(file, TestFiles.fileSystem())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

            if (shouldRemoveContentsOf(file, handling)) {
                File[] contents = file.listFiles();
    
                // Something else may have removed it
                if (contents == null) {
                    return false;
                }
    
                boolean attemptedToDeleteAnything = false;
                for (File item : contents) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top