Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 224 for content_es (0.13 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResource.java

        URI getURI();
    
        /**
         * Copies the contents of this resource to the given file.
         *
         * @throws ResourceException on failure to copy the content.
         * @throws org.gradle.api.resources.MissingResourceException when the resource does not exist
         */
        ExternalResourceReadResult<Void> writeTo(File destination) throws ResourceException;
    
        /**
         * Copies the contents of this resource to the given file, if the resource exists.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

         */
        TaskInputFilePropertyBuilder withNormalizer(Class<? extends FileNormalizer> normalizer);
    
        /**
         * Ignore directories during up-to-date checks and build cache key calculations.  When this is set, only the contents of directories
         * will be considered, but not the directories themselves.  Changes to empty directories, and directories that
         * contain only empty directories, will be ignored.
         *
         * @since 6.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            Snapshot now = snapshot();
            assertTrue(String.format("contents or modification time of %s have not changed", this), now.modTime != snapshot.modTime || !now.hash.equals(snapshot.hash));
        }
    
        public void assertContentsHaveChangedSince(Snapshot snapshot) {
            Snapshot now = snapshot();
            assertNotEquals(String.format("contents of %s have not changed", this), snapshot.hash, now.hash);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramSource.kt

    
    data class ProgramSource internal constructor(val path: String, val contents: ProgramText) {
    
        constructor(path: String, contents: String) : this(path, text(contents))
    
        val text: String
            get() = contents.text
    
        fun map(transform: (ProgramText) -> ProgramText) =
            ProgramSource(path, transform(contents))
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        /**
         * Reads and returns file contents. If some exception is triggered the method returns information about this exception.
         * Useful for including file contents in debug trace / exception messages.
         *
         * @param file to read
         * @return content of the file or the problem description in case file cannot be read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyGradlePluginInitIntegrationTest.groovy

        def "running TestKit functional test in test source set succeeds"() {
            given:
            run('init', '--type', 'groovy-gradle-plugin', '--dsl', scriptDsl.id)
    
            // Copy functional test contents into default source set test
            def projectTest = subprojectDir.file('src/test/groovy/org/example/SomeThingPluginTest.groovy')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 19:50:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                                attributes.attribute(contents, 'bin')
                            }
                        }
                        registerTransform(FileSizer) {
                            from.attribute(contents, 'bin')
                            to.attribute(contents, 'size')
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskJdkRelocationIntegrationTest.groovy

            """
        }
    
        @Override
        protected extractResults() {
            def contents = normaliseLineSeparators(file("build/reports/tests/test/index.html").text)
            contents = contents.replaceAll(/(<a href=".*">Gradle .*?<\/a>) at [^<]+/, '$1 at [DATE]' )
            contents = contents.replaceAll(/\b\d+(\.\d+)?s\b/, "[TIME]")
            return contents
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

        )
        def "visiting zip trees"() {
            given:
            runner.tasksToRun = ['visitZip']
            runner.addBuildMutator { createArchive(it, "archive.zip") { contents, output -> contents.zipTo(output) } }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        @RunFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

     * <p>
     * Permissions consist of:
     * <ul>
     *     <li>READ access: the capability to view the contents of a file, or to list the contents of a directory</li>
     *     <li>WRITE access: the capability to modify or remove the contents of a file, or to add or remove files to/from a directory</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top